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:
authorrobocoder <anthon.pang@gmail.com>2010-12-25 07:13:36 +0300
committerrobocoder <anthon.pang@gmail.com>2010-12-25 07:13:36 +0300
commit78d5ec1430b55eb08b576a7a3d89df4a6e8b4fdb (patch)
tree3f99da749123a2a8dbb8a3832e05ca9d1c30df33 /core/SmartyPlugins
parent47f0620c01472196c4b20543c211cc90d68486e3 (diff)
fixes #1914 - add webtests for login, forgot password, and password reset for valid and invalid input
git-svn-id: http://dev.piwik.org/svn/trunk@3529 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/SmartyPlugins')
-rw-r--r--core/SmartyPlugins/outputfilter.cachebuster.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/SmartyPlugins/outputfilter.cachebuster.php b/core/SmartyPlugins/outputfilter.cachebuster.php
index 37f06f1a19..6d8441c5ab 100644
--- a/core/SmartyPlugins/outputfilter.cachebuster.php
+++ b/core/SmartyPlugins/outputfilter.cachebuster.php
@@ -34,7 +34,7 @@ function smarty_outputfilter_cachebuster($source, &$smarty)
static $cachebuster = null;
if(is_null($cachebuster))
{
- $cachebuster = md5(Piwik_Common::getSalt() . phpversion() . $smarty->get_template_vars('piwik_version'));
+ $cachebuster = md5(Piwik_Common::getSalt() . PHP_VERSION . $smarty->get_template_vars('piwik_version'));
}
$tag = 'cb=' . $cachebuster;