diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-07-17 17:54:37 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-07-17 17:54:37 -0400 |
commit | 8894f957cdd7dc790d9413cfbef28cc4dc1655db (patch) | |
tree | c7e7f7dd471e6ff071a5886d5e2bcc46887f6507 /install.php | |
parent | f0d17afc7b69308b27dc48a43ed08947885d8225 (diff) |
Require PHP 5.2.3 or later.
http://laconi.ca/trac/ticket/1605
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index 570b08edf..8f500259e 100644 --- a/install.php +++ b/install.php @@ -43,8 +43,8 @@ function checkPrereqs() $pass = false; } - if (version_compare(PHP_VERSION, '5.0.0', '<')) { - ?><p class="error">Require PHP version 5 or greater.</p><?php + if (version_compare(PHP_VERSION, '5.2.3', '<')) { + ?><p class="error">Require PHP version 5.2.3 or greater.</p><?php $pass = false; } |