diff options
author | Jehan-Guillaume | 2014-04-17 17:48:22 +0000 |
---|---|---|
committer | Jehan-Guillaume | 2014-04-17 17:48:22 +0000 |
commit | 5acbcf2c5b54a2293afd2053b8ad1dd7acfe3fd1 (patch) | |
tree | 3d6c880d8237cf4aeafcc5bd126981074a1c2435 | |
parent | 223c4318c7e3d81552cdac6ae6071b256223d039 (diff) |
Fix bug #444
https://sourceforge.net/p/phppgadmin/bugs/444/
-rw-r--r-- | classes/PluginManager.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/PluginManager.php b/classes/PluginManager.php index 203808f1..981266e0 100644 --- a/classes/PluginManager.php +++ b/classes/PluginManager.php @@ -30,6 +30,8 @@ class PluginManager { function __construct($language) { global $conf, $lang; + if (! isset($conf['plugins'])) return; + // Get the activated plugins $plugins = $conf['plugins']; |