X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FPhpBugTests.php;h=01327be16712655e93eaa0b3390b8dc7c9b128f8;hb=41a15e0df33c404fd738c2dd39bb921d0a033a95;hp=5471264468eb81f3aa2eb9db4724045d57e69e99;hpb=f4e03271ef84e806fa2323f954674631ca9257c5;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/PhpBugTests.php b/includes/installer/PhpBugTests.php index 5471264468..01327be167 100644 --- a/includes/installer/PhpBugTests.php +++ b/includes/installer/PhpBugTests.php @@ -36,7 +36,7 @@ class PhpXmlBugTester { $xml = '' . htmlspecialchars( $charData ) . ''; $parser = xml_parser_create(); - xml_set_character_data_handler( $parser, array( $this, 'chardata' ) ); + xml_set_character_data_handler( $parser, [ $this, 'chardata' ] ); $parsedOk = xml_parse( $parser, $xml, true ); $this->ok = $parsedOk && ( $this->parsedData == $charData ); } @@ -45,29 +45,3 @@ class PhpXmlBugTester { $this->parsedData .= $data; } } - -/** - * Test for PHP bug #50394 (PHP 5.3.x conversion to null only, not 5.2.x) - * @see http://bugs.php.net/bug.php?id=50394 - * @ingroup PHPBugTests - */ -class PhpRefCallBugTester { - public $ok = false; - - function __call( $name, $args ) { - $old = error_reporting( E_ALL & ~E_WARNING ); - call_user_func_array( array( $this, 'checkForBrokenRef' ), $args ); - error_reporting( $old ); - } - - function checkForBrokenRef( &$var ) { - if ( $var ) { - $this->ok = true; - } - } - - function execute() { - $var = true; - call_user_func_array( array( $this, 'foo' ), array( &$var ) ); - } -}