From 93acedd1ffe094e6173e5e882afb34b7f43b8fc6 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 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); } -- 2.50.1