summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Vollmer <vollmerk@ampache.org>2011-11-30 15:27:17 -0400
committerKarl Vollmer <vollmerk@ampache.org>2011-11-30 15:27:17 -0400
commit12a7e9bc24be98cbd6f89f9597d629e4a5359631 (patch)
treed4ae486e636f7952c9a7995355b77e96d651924f
parent7d9313f80888f96c67066b255c0383350b6dd199 (diff)
downloadampache-12a7e9bc24be98cbd6f89f9597d629e4a5359631.tar.gz
ampache-12a7e9bc24be98cbd6f89f9597d629e4a5359631.tar.bz2
ampache-12a7e9bc24be98cbd6f89f9597d629e4a5359631.zip
Ampache now requires PHP 5.3 or greater... 'JFDI'
-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;
}