Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-08-15 14:04:50 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-08-15 14:04:50 +0400
commit7145523b0bd4fa191543ac3d41687b3ae5f77a11 (patch)
tree23c605180e031e6faf07f7b0f4749f22bb0c3bca
parent491ae474d7db68c683b39cadd93648f024e67ab8 (diff)
no need to set the second param so we make sure the default value of clear all files is used which is -1 for newer versions and 0 for older versions
-rw-r--r--core/Filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Filesystem.php b/core/Filesystem.php
index 85eda096ac..d72deed3ec 100644
--- a/core/Filesystem.php
+++ b/core/Filesystem.php
@@ -393,7 +393,7 @@ class Filesystem
if (ini_get('xcache.admin.enable_auth')) {
// XCache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.
} else {
- @xcache_clear_cache(XC_TYPE_VAR, 0);
+ @xcache_clear_cache(XC_TYPE_VAR);
}
}
}