diff --git a/views/bootstrap/class.ViewFolder.php b/views/bootstrap/class.ViewFolder.php index 76decac34..08110a4bb 100644 --- a/views/bootstrap/class.ViewFolder.php +++ b/views/bootstrap/class.ViewFolder.php @@ -92,6 +92,8 @@ class SeedDMS_View_ViewFolder extends SeedDMS_Bootstrap_Style { $this->contentStart(); $this->pageNavigation($this->getFolderPathHTML($folder), "view_folder", $folder); + echo $this->callHook('preContent'); + echo "
\n"; echo "
\n"; if ($enableFolderTree) $this->printTreeNavigation($folderid, $showtree); @@ -307,6 +309,8 @@ class SeedDMS_View_ViewFolder extends SeedDMS_Bootstrap_Style { $this->contentEnd(); + echo $this->callHook('postContent'); + $this->htmlEndPage(); } /* }}} */ }