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.4.0alpha2~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d3b1d5b531492f692e349206da1e61244d55420e;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 5a4fccc7dc..bc5f99bc09 100755 --- a/run-tests.php +++ b/run-tests.php @@ -489,7 +489,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); }