diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-11-14 18:58:23 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-11-14 18:58:23 +0100 |
commit | cf319546617486ecd925efbc16c54885f83ec8ab (patch) | |
tree | 065da5bc2604c51d4bd4ae1fd5984e19b595305e /program/lib/Roundcube/rcube_plugin.php | |
parent | e957bfecdf5c856320725fcbf7ec737127f614bd (diff) |
Make require_plugin() force loading of the required plugin
Diffstat (limited to 'program/lib/Roundcube/rcube_plugin.php')
-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 3153a8410..aa6d8376e 100644 --- a/program/lib/Roundcube/rcube_plugin.php +++ b/program/lib/Roundcube/rcube_plugin.php @@ -109,7 +109,7 @@ abstract class rcube_plugin */ public function require_plugin($plugin_name) { - return $this->api->load_plugin($plugin_name); + return $this->api->load_plugin($plugin_name, true); } /** |