From d3b1d5b531492f692e349206da1e61244d55420e Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Fri, 1 Jul 2011 23:13:53 +0000 Subject: [PATCH] - Fixed bug #55080 (Deprecated call in run--test.php) patch by: fedora at famillecollet dot com --- run-tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.40.0