pass name of from to printNewTreeNavigation()

This commit is contained in:
Uwe Steinmann 2013-06-03 07:57:53 +02:00
parent 31015784ac
commit 3fed9973ef
2 changed files with 2 additions and 3 deletions

View File

@ -39,7 +39,7 @@ class SeedDMS_View_DocumentChooser extends SeedDMS_Bootstrap_Style {
$this->htmlStartPage(getMLText("choose_target_document"));
$this->contentContainerStart();
$this->printNewTreeNavigation($folderid, M_READ, 1);
$this->printNewTreeNavigation($folderid, M_READ, 1, $form);
$this->contentContainerEnd();
echo "</body>\n</html>\n";
} /* }}} */

View File

@ -41,8 +41,7 @@ class SeedDMS_View_FolderChooser extends SeedDMS_Bootstrap_Style {
$this->htmlStartPage(getMLText("choose_target_folder"));
$this->contentContainerStart();
$this->printNewTreeNavigation($rootfolderid, $mode, 0);
// $this->printFoldersTree($mode, $exclude, $rootfolderid);
$this->printNewTreeNavigation($rootfolderid, $mode, 0, $form);
$this->contentContainerEnd();
echo "</body>\n</html>\n";
} /* }}} */