]> source.dussan.org Git - nextcloud-server.git/commitdiff
Respect coding style
authorThomas Müller <thomas.mueller@tmit.eu>
Mon, 10 Sep 2012 09:26:20 +0000 (12:26 +0300)
committerThomas Müller <thomas.mueller@tmit.eu>
Mon, 10 Sep 2012 09:26:20 +0000 (12:26 +0300)
lib/cache/xcache.php

index 0739e4a2fa2bcbb2bd0867a718917b8749918a68..cecdf46351cb3c6c37cc4a069d345721ef26f185 100644 (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);
                }
        }