From fe0450c0516db6ee52854d2291c761d387cea884 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 21 Mar 2018 13:40:57 +0100 Subject: [PATCH] call controller when updating extension list --- views/bootstrap/class.ExtensionMgr.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/views/bootstrap/class.ExtensionMgr.php b/views/bootstrap/class.ExtensionMgr.php index 2f60bd842..d0bff6ad3 100644 --- a/views/bootstrap/class.ExtensionMgr.php +++ b/views/bootstrap/class.ExtensionMgr.php @@ -140,7 +140,7 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Bootstrap_Style { echo "\"".$extname."\""; echo ""; echo "".$extconf['title']; - if($extconf['changelog'] && file_exists($extdir."/".$extname."/".$extconf['changelog'])) { + if(!empty($extconf['changelog']) && file_exists($extdir."/".$extname."/".$extconf['changelog'])) { echo $this->printPopupBox("", '
'.file_get_contents($extdir."/".$extname."/".$extconf['changelog'])."
", true); } echo "
".$extconf['description'].""; @@ -215,7 +215,15 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Bootstrap_Style { } echo "\n"; ?> -
+
+
+ + + + + +
+