diff options
author | Felipe Pena <felipe@php.net> | 2011-07-01 23:13:53 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-07-01 23:13:53 +0000 |
commit | 5f75a28d015c3ceb31bc1117b8d6196cf9ecb597 (patch) | |
tree | 05d4aa53565d3168e83309f8c59a0ec4836343aa /run-tests.php | |
parent | 8f80896718c4ce7b47c6f4f603ccb7095a8fecca (diff) | |
download | php-git-5f75a28d015c3ceb31bc1117b8d6196cf9ecb597.tar.gz |
- Fixed bug #55080 (Deprecated call in run--test.php)
patch by: fedora at famillecollet dot com
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |