diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-10-30 09:00:47 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-10-30 09:00:47 +0100 |
commit | 5d8f8b59f3803d225ea77b974001f156113a1466 (patch) | |
tree | 0825fbb6f202d636df6b36d7d1cf509b88a20790 /program/lib | |
parent | ab5b89b854746c76a26b70612c1220a8f3841824 (diff) |
Correct load_config() return value with improvement in last commit
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_plugin.php b/program/lib/Roundcube/rcube_plugin.php index 71a7ccf3c..326f10a5c 100644 --- a/program/lib/Roundcube/rcube_plugin.php +++ b/program/lib/Roundcube/rcube_plugin.php @@ -143,7 +143,7 @@ abstract class rcube_plugin public function load_config($fname = 'config.inc.php') { if (in_array($fname, $this->loaded_config)) { - return; + return true; } $this->loaded_config[] = $fname; |