Index: trunk/phase3/maintenance/install-utils.inc |
— | — | @@ -14,11 +14,11 @@ |
15 | 15 | |
16 | 16 | if( !function_exists( 'version_compare' ) ) { |
17 | 17 | # version_compare was introduced in 4.1.0 |
18 | | - echo "Your PHP version is much too old; 4.0.x will _not_ work. 5.0.0 or higher is required. ABORTING.\n"; |
| 18 | + echo "Your PHP version is much too old; 4.0.x will _not_ work. 5.1.0 or higher is required. ABORTING.\n"; |
19 | 19 | die( 1 ); |
20 | 20 | } |
21 | | - if( version_compare( phpversion(), '5.0.0' ) < 0 ) { |
22 | | - echo "PHP 5.0.0 or higher is required. If PHP 5 is available only when \n". |
| 21 | + if( version_compare( phpversion(), '5.1.0' ) < 0 ) { |
| 22 | + echo "PHP 5.1.0 or higher is required. If PHP 5 is available only when \n". |
23 | 23 | "PHP files have a .php5 extension, please navigate to <a href=\"index.php5\">index.php5</a> \n". |
24 | 24 | "to continue installation. ABORTING.\n"; |
25 | 25 | die( 1 ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -867,12 +867,8 @@ |
868 | 868 | |
869 | 869 | == Compatibility == |
870 | 870 | |
871 | | -MediaWiki 1.16 requires PHP 5 (5.2 recommended). PHP 4 is no longer supported. |
| 871 | +MediaWiki 1.16 requires PHP 5.1 (5.2 recommended). PHP 4 is no longer supported. |
872 | 872 | |
873 | | -PHP 5.0.x fails on 64-bit systems due to serious bugs with array processing: |
874 | | -http://bugs.php.net/bug.php?id=34879 |
875 | | -Upgrade affected systems to PHP 5.1 or higher. |
876 | | - |
877 | 873 | MySQL 3.23.x is no longer supported; some older hosts may need to upgrade. |
878 | 874 | At this time we still recommend 4.0, but 4.1/5.0 will work fine in most cases. |
879 | 875 | |