diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-11-28 09:16:36 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-11-28 09:16:36 +0100 |
commit | 38f1f5692091ae9ddd60f27bc4960694947285b3 (patch) | |
tree | 2dc028432f9d006577c45cffad78c4874871157b | |
parent | ffec857b697ce0a23134f04cf345dc3a8b45a7ae (diff) |
Exec config_get hook also in rcube_config::all() (#1485981)
-rw-r--r-- | program/lib/Roundcube/rcube_config.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_config.php b/program/lib/Roundcube/rcube_config.php index 04b914c3d..0352e4772 100644 --- a/program/lib/Roundcube/rcube_config.php +++ b/program/lib/Roundcube/rcube_config.php @@ -373,7 +373,11 @@ class rcube_config */ public function all() { - return $this->prop; + $rcube = rcube::get_instance(); + $plugin = $rcube->plugins->exec_hook('config_get', array( + 'name' => '*', 'result' => $this->prop)); + + return $plugin['result']; } /** |