Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/cache
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-10 13:26:20 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-10 13:26:20 +0400
commit9a2bc5255bbf0a80ab1c4269d2b308b3ba6377d3 (patch)
tree164f90a52b7c082a1e2e77959fa7f43c7b74a3ba /lib/cache
parent23f348c99fccb38779985d8cee2c3e7ae7e43e5a (diff)
Respect coding style
Diffstat (limited to 'lib/cache')
-rw-r--r--lib/cache/xcache.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cache/xcache.php b/lib/cache/xcache.php
index 0739e4a2fa2..cecdf46351c 100644
--- a/lib/cache/xcache.php
+++ b/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);
}
}