http://www.mediawiki.org/wiki/Special:Code/MediaWiki/61907

Revision: 61907
Author:   mah
Date:     2010-02-03 05:32:32 +0000 (Wed, 03 Feb 2010)

Log Message:
-----------
Bump minimum supported version to 5.1.0

Modified Paths:
--------------
    trunk/phase3/RELEASE-NOTES
    trunk/phase3/maintenance/install-utils.inc

Modified: trunk/phase3/RELEASE-NOTES
===================================================================
--- trunk/phase3/RELEASE-NOTES  2010-02-03 05:25:28 UTC (rev 61906)
+++ trunk/phase3/RELEASE-NOTES  2010-02-03 05:32:32 UTC (rev 61907)
@@ -867,12 +867,8 @@
 
 == Compatibility ==
 
-MediaWiki 1.16 requires PHP 5 (5.2 recommended). PHP 4 is no longer supported.
+MediaWiki 1.16 requires PHP 5.1 (5.2 recommended). PHP 4 is no longer 
supported.
 
-PHP 5.0.x fails on 64-bit systems due to serious bugs with array processing:
-http://bugs.php.net/bug.php?id=34879
-Upgrade affected systems to PHP 5.1 or higher.
-
 MySQL 3.23.x is no longer supported; some older hosts may need to upgrade.
 At this time we still recommend 4.0, but 4.1/5.0 will work fine in most cases.
 

Modified: trunk/phase3/maintenance/install-utils.inc
===================================================================
--- trunk/phase3/maintenance/install-utils.inc  2010-02-03 05:25:28 UTC (rev 
61906)
+++ trunk/phase3/maintenance/install-utils.inc  2010-02-03 05:32:32 UTC (rev 
61907)
@@ -14,11 +14,11 @@
 
        if( !function_exists( 'version_compare' ) ) {
                # version_compare was introduced in 4.1.0
-               echo "Your PHP version is much too old; 4.0.x will _not_ work. 
5.0.0 or higher is required. ABORTING.\n";
+               echo "Your PHP version is much too old; 4.0.x will _not_ work. 
5.1.0 or higher is required. ABORTING.\n";
                die( 1 );
        }
-       if( version_compare( phpversion(), '5.0.0' ) < 0 ) {
-               echo "PHP 5.0.0 or higher is required. If PHP 5 is available 
only when \n".
+       if( version_compare( phpversion(), '5.1.0' ) < 0 ) {
+               echo "PHP 5.1.0 or higher is required. If PHP 5 is available 
only when \n".
    "PHP files have a .php5 extension, please navigate to <a 
href=\"index.php5\">index.php5</a> \n".
    "to continue installation. ABORTING.\n";
                die( 1 );



_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to