Respect coding style

This commit is contained in:
Thomas Müller 2012-09-10 12:26:20 +03:00
parent 23f348c99f
commit 9a2bc5255b
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}