Skip to content
This repository has been archived by the owner on Aug 27, 2021. It is now read-only.

Commit

Permalink
Fix #585 - wrong check for php version
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdkleijn committed Sep 6, 2014
1 parent de4358b commit 1d16686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wolf/install/requirements.php
Expand Up @@ -22,7 +22,7 @@
$errors = false;

// Check PHP version
$check = (PHP_VERSION >= '5.1.2');
$check = (PHP_VERSION >= '5.3.0');
$php = '<span class="'.($check ? 'check' : 'notcheck');
$php .= '">PHP '.PHP_VERSION.'</span>';
if (!$check) $errors = true;
Expand Down Expand Up @@ -171,4 +171,4 @@
}
?>
</form>
</p>
</p>

0 comments on commit 1d16686

Please sign in to comment.