Disable type-check when fetching objects by UID

This commit is contained in:
Thomas Bruederli 2013-06-27 11:34:09 +02:00
parent 0d692b1774
commit 9163ca1ce0

View file

@ -421,7 +421,7 @@ class kolab_storage_folder
$this->cache->synchronize();
$msguid = $this->cache->uid2msguid($uid);
if ($msguid && ($object = $this->cache->get($msguid)))
if ($msguid && ($object = $this->cache->get($msguid, '*')))
return $object;
return false;