From 0c20e0349b9329ecb99921b7aee1ae9a26c234dc Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Mon, 21 Mar 2016 06:43:00 +0100 Subject: [PATCH] add missing contentEnd() --- views/bootstrap/class.ExtensionMgr.php | 1 + views/bootstrap/class.Hooks.php | 1 + 2 files changed, 2 insertions(+) diff --git a/views/bootstrap/class.ExtensionMgr.php b/views/bootstrap/class.ExtensionMgr.php index 8f871ce16..5be43b04d 100644 --- a/views/bootstrap/class.ExtensionMgr.php +++ b/views/bootstrap/class.ExtensionMgr.php @@ -91,6 +91,7 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Bootstrap_Style { contentContainerEnd(); + $this->contentEnd(); $this->htmlEndPage(); } /* }}} */ } diff --git a/views/bootstrap/class.Hooks.php b/views/bootstrap/class.Hooks.php index daff0577f..b3c50af14 100644 --- a/views/bootstrap/class.Hooks.php +++ b/views/bootstrap/class.Hooks.php @@ -75,6 +75,7 @@ class SeedDMS_View_Hooks extends SeedDMS_Bootstrap_Style { self::list_hooks(); + $this->contentEnd(); $this->htmlEndPage(); } /* }}} */ }