diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-08-15 03:41:33 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-08-15 03:41:33 +0200 |
commit | d73285c1869591da74c148b577d780a73313fe90 (patch) | |
tree | d7248eb8a1c1ab5146bf52e7f389596d6736af8d /lib | |
parent | 7fa53eae7fffcb517f56c96a9f2f67db5ef0d643 (diff) | |
download | nextcloud-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-x | lib/util.php | 2 |
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); } |