summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdocs/README5
-rw-r--r--lib/debug.lib.php2
2 files changed, 2 insertions, 5 deletions
diff --git a/docs/README b/docs/README
index 22353636..b9c7f47e 100755
--- a/docs/README
+++ b/docs/README
@@ -114,7 +114,7 @@ Contents:
2. Getting all the components
Apache >= 1.3.x http://www.apache.org OR other web server
- PHP >= 5.1.x http://www.php.net **
+ PHP >= 5.3.x http://www.php.net **
PHP5-Mysql
PHP5-Session
PHP5-gd (recommended)
@@ -122,9 +122,6 @@ Contents:
PHP5 ZLIB support (recommended)
MySQL >= 5.x+ http://www.mysql.com
- ** PHP 5.3.x is required for Windows systems due to use of inet_pton
- and inet_aton functions.
-
3. Setting Up
Please see the included INSTALL file or if possible the wiki
diff --git a/lib/debug.lib.php b/lib/debug.lib.php
index 44d427a3..2d917ea4 100644
--- a/lib/debug.lib.php
+++ b/lib/debug.lib.php
@@ -85,7 +85,7 @@ function check_database_inserted($dbh,$db_name) {
*/
function check_php_ver($level=0) {
- if (floatval(phpversion()) < 5.1) {
+ if (floatval(phpversion()) < 5.3) {
return false;
}