summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2013-08-15 03:40:57 +0200
committerAndreas Fischer <bantu@owncloud.com>2013-08-15 03:40:57 +0200
commit7fa53eae7fffcb517f56c96a9f2f67db5ef0d643 (patch)
tree42bc1904c8f8991a6f318339799ca0ce54991271
parent9770f52da6cb4445344c3e3641376d36a2c996a9 (diff)
downloadnextcloud-server-7fa53eae7fffcb517f56c96a9f2f67db5ef0d643.tar.gz
nextcloud-server-7fa53eae7fffcb517f56c96a9f2f67db5ef0d643.zip
Make it clear that log message is about the XCache opcode cache.
-rwxr-xr-xlib/util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index e9360b44f9e..525a8d9d5d3 100755
--- a/lib/util.php
+++ b/lib/util.php
@@ -870,7 +870,7 @@ class OC_Util {
// XCache
if (function_exists('xcache_clear_cache')) {
if (ini_get('xcache.admin.enable_auth')) {
- OC_Log::write('core', 'XCache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN);
+ OC_Log::write('core', 'XCache opcode cache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN);
} else {
xcache_clear_cache(XC_TYPE_PHP, 0);
}