]> 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 0b0b253c15dd440e3cc530eb28f5d658deb6caed..a615efccdcff8d862533c5c0d37c242e2a7d20c5 100755 (executable)
@@ -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);
 }