Fix query for dictionary configuration objects (#3126)
This commit is contained in:
parent
a84eb35f01
commit
708658043b
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ class kolab_config extends rcube_plugin
|
||||||
if (isset($this->dicts[$lang]))
|
if (isset($this->dicts[$lang]))
|
||||||
return $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) {
|
foreach ($this->folders as $folder) {
|
||||||
// we only want to read from default folder
|
// we only want to read from default folder
|
||||||
|
|
Loading…
Add table
Reference in a new issue