summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_config.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-11-28 09:16:36 +0100
committerAleksander Machniak <alec@alec.pl>2013-11-28 09:16:36 +0100
commit38f1f5692091ae9ddd60f27bc4960694947285b3 (patch)
tree2dc028432f9d006577c45cffad78c4874871157b /program/lib/Roundcube/rcube_config.php
parentffec857b697ce0a23134f04cf345dc3a8b45a7ae (diff)
Exec config_get hook also in rcube_config::all() (#1485981)
Diffstat (limited to 'program/lib/Roundcube/rcube_config.php')
-rw-r--r--program/lib/Roundcube/rcube_config.php6
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'];
}
/**