]> granicus.if.org Git - php/commitdiff
- Fixed bug #55080 (Deprecated call in run--test.php)
authorFelipe Pena <felipe@php.net>
Fri, 1 Jul 2011 23:13:53 +0000 (23:13 +0000)
committerFelipe Pena <felipe@php.net>
Fri, 1 Jul 2011 23:13:53 +0000 (23:13 +0000)
  patch by: fedora at famillecollet dot com

run-tests.php

index 5a4fccc7dcc40607cb65f60dd927f8e9dc1fa61d..bc5f99bc0971e066df90df2e8dd208444c156dce 100755 (executable)
@@ -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);
 }