diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-06-02 21:34:53 (GMT) |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-06-02 21:34:53 (GMT) |
commit | 708658043b8cc89bf3f423f81f7d565de420ce86 (patch) | |
tree | e1117259eab80b5c79c5131182b8247a9c59cef1 /plugins/kolab_config | |
parent | a84eb35f01bd02799f4f1ff7399ba0ac200dfc89 (diff) | |
download | roundcubemail-plugins-kolab-708658043b8cc89bf3f423f81f7d565de420ce86.tar.gz |
Fix query for dictionary configuration objects (#3126)
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 d4a4753..78979ca 100644 --- a/plugins/kolab_config/kolab_config.php +++ b/plugins/kolab_config/kolab_config.php @@ -160,7 +160,7 @@ class kolab_config extends rcube_plugin if (isset($this->dicts[$lang])) return $this->dicts[$lang]; - $query = array(array('type','=','configuration.dictionary'), array('tags','=',$lang)); + $query = array(array('type','=','dictionary'), array('tags','=',$lang)); foreach ($this->folders as $folder) { // we only want to read from default folder |