1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-29 11:24:11 +01:00

Fix wrong parameter order

This commit is contained in:
LEDfan 2014-12-20 13:48:22 +01:00
parent f322defadf
commit 8e23084254

View File

@ -295,7 +295,7 @@ Class Properties {
//$cache->remove($key);
$haskey = $cache->hasKey($key);
if (!array_key_exists($options, 'remove') && !array_key_exists($options, 'update')){
if (!array_key_exists('remove', $options) && !array_key_exists('update', $options)){
if ($cache->hasKey($key) && $image === null){
return $cache->get($key);
}