From: Mark A. Hershberger Date: Wed, 3 Feb 2010 16:29:09 +0000 (+0000) Subject: follow up 61907 remove 5.0 bug check X-Git-Tag: 1.31.0-rc.0~37948 X-Git-Url: http://git.cyclocoop.org/data/%24oldEdit?a=commitdiff_plain;h=79df0dc44cad6a235c2088cb36fd1959caf7454f;p=lhc%2Fweb%2Fwiklou.git follow up 61907 remove 5.0 bug check --- diff --git a/maintenance/install-utils.inc b/maintenance/install-utils.inc index 42aeefadb7..f2d48e9a0d 100644 --- a/maintenance/install-utils.inc +++ b/maintenance/install-utils.inc @@ -24,16 +24,6 @@ function install_version_checks() { die( 1 ); } - // 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 ); - } - $test = new PhpXmlBugTester(); if( !$test->ok ) { echo "Your system has a combination of PHP and libxml2 versions which is buggy\n" .