summaryrefslogtreecommitdiffstats
path: root/lib/cache
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2013-09-18 15:02:25 +0200
committerThomas Tanghus <thomas@tanghus.net>2013-09-18 15:02:25 +0200
commit09d043729a41a0e8966ed3bb81567ed1009a37b6 (patch)
tree9d7f81a609953e924d4a5059c1bb616a18eb0111 /lib/cache
parent79cd655920ae3346725539df2f443a66e51c5726 (diff)
downloadnextcloud-server-09d043729a41a0e8966ed3bb81567ed1009a37b6.tar.gz
nextcloud-server-09d043729a41a0e8966ed3bb81567ed1009a37b6.zip
Note to self 2: Do as you preach. Test!
Diffstat (limited to 'lib/cache')
-rw-r--r--lib/cache/fileglobal.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cache/fileglobal.php b/lib/cache/fileglobal.php
index 9ca17402933..bd049bba4d0 100644
--- a/lib/cache/fileglobal.php
+++ b/lib/cache/fileglobal.php
@@ -10,7 +10,7 @@ namespace OC\Cache;
class FileGlobal {
static protected function getCacheDir() {
- $cache_dir = get_temp_dir().'/owncloud-'.OC_Util::getInstanceId().'/';
+ $cache_dir = get_temp_dir().'/owncloud-' . \OC_Util::getInstanceId().'/';
if (!is_dir($cache_dir)) {
mkdir($cache_dir);
}