Skip to content

Commit

Permalink
Piwik now requires PHP 5.3 Fixes #3741
Browse files Browse the repository at this point in the history
  • Loading branch information
mattab committed Aug 9, 2013
1 parent c64939a commit 32fe681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/testMinimumPhpVersion.php
Expand Up @@ -17,8 +17,8 @@

$piwik_errorMessage = '';

// Minimum requirement: ->newInstanceArgs in 5.1.3
$piwik_minimumPHPVersion = '5.1.3RC';
// Minimum requirement: Namespaces in 5.3
$piwik_minimumPHPVersion = '5.3';
$piwik_currentPHPVersion = PHP_VERSION;
$minimumPhpInvalid = version_compare($piwik_minimumPHPVersion, $piwik_currentPHPVersion) > 0;
if ($minimumPhpInvalid) {
Expand Down

0 comments on commit 32fe681

Please sign in to comment.