summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2013-08-15 03:41:33 +0200
committerAndreas Fischer <bantu@owncloud.com>2013-08-15 03:41:33 +0200
commitd73285c1869591da74c148b577d780a73313fe90 (patch)
treed7248eb8a1c1ab5146bf52e7f389596d6736af8d /lib
parent7fa53eae7fffcb517f56c96a9f2f67db5ef0d643 (diff)
downloadnextcloud-server-d73285c1869591da74c148b577d780a73313fe90.tar.gz
nextcloud-server-d73285c1869591da74c148b577d780a73313fe90.zip
Do not mention php.ini, it may be defined in xcache.ini or so.
Diffstat (limited to 'lib')
-rwxr-xr-xlib/util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index 525a8d9d5d3..b9d678dced8 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 opcode cache 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.', \OC_Log::WARN);
} else {
xcache_clear_cache(XC_TYPE_PHP, 0);
}