Detect PHP 5.0.x 64-bit bug and abort in WebStart.php; too many things break
authorIlmari Karonen <vyznev@users.mediawiki.org>
Sun, 17 Dec 2006 13:40:28 +0000 (13:40 +0000)
committerIlmari Karonen <vyznev@users.mediawiki.org>
Sun, 17 Dec 2006 13:40:28 +0000 (13:40 +0000)
mysteriously otherwise (detection code copied from install-utils.inc)

RELEASE-NOTES
includes/WebStart.php

index d7fd7a4..1c63875 100644 (file)
@@ -334,6 +334,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 8153) <nowiki> doesn't work in site notice
 * (bug 6690) wfMsgNoTrans() transforms messages
 * (bug 8274) Wrap edit tools in a <div> with a specified class
+* Detect PHP 5.0.x 64-bit bug and abort in WebStart.php; too many things break
+  mysteriously otherwise (detection code copied from install-utils.inc)
 
 == Languages updated ==
 
index 0c71ce5..3758229 100644 (file)
@@ -4,6 +4,16 @@
 # starts the profiler and loads the configuration, and optionally loads 
 # Setup.php depending on whether MW_NO_SETUP is defined.
 
+# Test for PHP bug which breaks PHP 5.0.x on 64-bit...
+# As of 1.8 this breaks lots of common operations instead
+# of just some rare ones like export.
+$borked = str_replace( 'a', 'b', array( -1 => -1 ) );
+if( !isset( $borked[-1] ) ) {
+       echo "PHP 5.0.x is buggy on your 64-bit system; you must upgrade to PHP 5.1.x\n" .
+            "or higher. ABORTING. (http://bugs.php.net/bug.php?id=34879 for details)\n";
+       die( -1 );
+}
+
 # Protect against register_globals
 # This must be done before any globals are set by the code
 if ( ini_get( 'register_globals' ) ) {