[user_ldap] properly decode cached objects

* fixes #21896
This commit is contained in:
Morris Jobke 2016-01-29 07:51:16 +01:00
parent 476720ada9
commit e4ad4c7e98
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ class Connection extends LDAPUtility {
}
$key = $this->getCacheKey($key);
return json_decode(base64_decode($this->cache->get($key)));
return json_decode(base64_decode($this->cache->get($key)), true);
}
/**