diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2012-10-17 09:54:25 (GMT) |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2012-10-17 09:54:25 (GMT) |
commit | 2d08c58e56ebe9c0dd8c55679c887714178ed994 (patch) | |
tree | 7a4c5210fbfa9cdf5638181539c0b13d1a2a8bed /plugins/kolab_config | |
parent | 5be0b06fcbf61dacd493467b57041f808b04f1c7 (diff) | |
download | roundcubemail-plugins-kolab-2d08c58e56ebe9c0dd8c55679c887714178ed994.tar.gz |
Fix/prepare plugins to use out of Roundcube (where rcmail object doesn't exist)
Diffstat (limited to 'plugins/kolab_config')
-rw-r--r-- | plugins/kolab_config/kolab_config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/kolab_config/kolab_config.php b/plugins/kolab_config/kolab_config.php index cbe9313..4fe8a7f 100644 --- a/plugins/kolab_config/kolab_config.php +++ b/plugins/kolab_config/kolab_config.php @@ -40,7 +40,7 @@ class kolab_config extends rcube_plugin */ public function init() { - $rcmail = rcmail::get_instance(); + $rcmail = rcube::get_instance(); // Register spellchecker dictionary handlers if (strtolower($rcmail->config->get('spellcheck_dictionary')) != 'shared') { |