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
path: root/core
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-10-07 00:59:13 +0400
committermattab <matthieu.aubry@gmail.com>2014-10-07 00:59:13 +0400
commit733ef22246b50e91533e518ea407f74c9587d30e (patch)
treece72e2ff509d8daa5c110717da7ce93eefd831e5 /core
parentb2af823c5c299a04ab38923da161e4d68c119213 (diff)
Increasing PHP requirements to 5.3.3 refs #6390
Diffstat (limited to 'core')
-rw-r--r--core/testMinimumPhpVersion.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/testMinimumPhpVersion.php b/core/testMinimumPhpVersion.php
index 3dd3defd3e..542279f872 100644
--- a/core/testMinimumPhpVersion.php
+++ b/core/testMinimumPhpVersion.php
@@ -15,8 +15,8 @@
$piwik_errorMessage = '';
-// Minimum requirement: stream_resolve_include_path in 5.3.2, namespaces in 5.3
-$piwik_minimumPHPVersion = '5.3.2';
+// Minimum requirement: stream_resolve_include_path, working json_encode in 5.3.3, namespaces in 5.3
+$piwik_minimumPHPVersion = '5.3.3';
$piwik_currentPHPVersion = PHP_VERSION;
$minimumPhpInvalid = version_compare($piwik_minimumPHPVersion, $piwik_currentPHPVersion) > 0;
if ($minimumPhpInvalid) {