Respect coding style

remotes/origin/stable45
Thomas Müller 13 years ago
parent 23f348c99f
commit 9a2bc5255b
  1. 4
      lib/cache/xcache.php

@ -29,9 +29,9 @@ class OC_Cache_XCache {
public function set($key, $value, $ttl=0) {
if($ttl>0) {
return xcache_set($this->getNamespace().$key,$value,$ttl);
return xcache_set($this->getNamespace().$key, $value, $ttl);
}else{
return xcache_set($this->getNamespace().$key,$value);
return xcache_set($this->getNamespace().$key, $value);
}
}

Loading…
Cancel
Save