Exec config_get hook also in rcube_config::all() (#1485981)

pull/157/head
Aleksander Machniak 11 years ago
parent ffec857b69
commit 38f1f56920

@ -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'];
}
/**

Loading…
Cancel
Save