diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-06-27 21:57:59 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-06-27 21:57:59 +0200 |
commit | 64f16f1db1f05e032080c885ebf91f38f659e62f (patch) | |
tree | 720b012a91efb5b07f0f771d0460fa9f56d5b277 /lib | |
parent | c6bbccc776ee9ea1112d3cfab54c9f2c95540130 (diff) | |
download | nextcloud-server-64f16f1db1f05e032080c885ebf91f38f659e62f.tar.gz nextcloud-server-64f16f1db1f05e032080c885ebf91f38f659e62f.zip |
Fix stupid namespace separator
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config.php b/lib/config.php index e204de0baee..19d58c90443 100644 --- a/lib/config.php +++ b/lib/config.php @@ -166,6 +166,6 @@ class Config { } // Prevent others from reading the config @chmod($this->configFilename, 0640); - OC_Util::clearOpcodeCache(); + \OC_Util::clearOpcodeCache(); } } |