From: Felipe Pena Date: Fri, 1 Jul 2011 23:13:53 +0000 (+0000) Subject: - Fixed bug #55080 (Deprecated call in run--test.php) X-Git-Tag: php-5.5.0alpha1~1848 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93acedd1ffe094e6173e5e882afb34b7f43b8fc6;p=php - Fixed bug #55080 (Deprecated call in run--test.php) patch by: fedora at famillecollet dot com --- diff --git a/run-tests.php b/run-tests.php index 0b0b253c15..a615efccdc 100755 --- a/run-tests.php +++ b/run-tests.php @@ -491,7 +491,7 @@ if (getenv('TEST_PHP_ARGS')) { $argv = array(__FILE__); } - $argv = array_merge($argv, split(' ', getenv('TEST_PHP_ARGS'))); + $argv = array_merge($argv, explode(' ', getenv('TEST_PHP_ARGS'))); $argc = count($argv); }