diff --git a/views/bootstrap/class.ViewFolder.php b/views/bootstrap/class.ViewFolder.php index 280ba1cc2..a8c4a417b 100644 --- a/views/bootstrap/class.ViewFolder.php +++ b/views/bootstrap/class.ViewFolder.php @@ -90,7 +90,12 @@ class SeedDMS_View_ViewFolder extends SeedDMS_Bootstrap_Style { $this->globalNavigation($folder); $this->contentStart(); - $this->pageNavigation($this->getFolderPathHTML($folder), "view_folder", $folder); + $txt = $this->callHook('folderMenu', $folder); + if(is_string($txt)) + echo $txt; + else { + $this->pageNavigation($this->getFolderPathHTML($folder), "view_folder", $folder); + } echo $this->callHook('preContent');