]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Require PHP 5.2.3 or later.
authorCraig Andrews <candrews@integralblue.com>
Fri, 17 Jul 2009 21:54:37 +0000 (17:54 -0400)
committerCraig Andrews <candrews@integralblue.com>
Fri, 17 Jul 2009 21:54:37 +0000 (17:54 -0400)
http://laconi.ca/trac/ticket/1605

README
install.php

diff --git a/README b/README
index 0214e49315dda2fa837a5ed799513d27c48a4a35..b65a08d425089728dd3d6236c3c8b3472a141cc4 100644 (file)
--- a/README
+++ b/README
@@ -134,7 +134,7 @@ Prerequisites
 The following software packages are *required* for this software to
 run correctly.
 
-- PHP 5.2.x. It may be possible to run this software on earlier
+- PHP 5.2.3+. It may be possible to run this software on earlier
   versions of PHP, but many of the functions used are only available
   in PHP 5.2 or above.
 - MySQL 5.x. The Laconica database is stored, by default, in a MySQL
index 570b08edf473b13e709ece605656a279d89016de..8f500259ef442bf57ec5d7f79f0803464fd91328 100644 (file)
@@ -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;
     }