diff --git a/views/bootstrap/class.DocumentChooser.php b/views/bootstrap/class.DocumentChooser.php index fcb7dddb2..b55758294 100644 --- a/views/bootstrap/class.DocumentChooser.php +++ b/views/bootstrap/class.DocumentChooser.php @@ -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 "\n\n"; } /* }}} */ diff --git a/views/bootstrap/class.FolderChooser.php b/views/bootstrap/class.FolderChooser.php index b6c621ae6..4d346de45 100644 --- a/views/bootstrap/class.FolderChooser.php +++ b/views/bootstrap/class.FolderChooser.php @@ -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 "\n\n"; } /* }}} */