diff options
author | Lars Strojny <lstrojny@php.net> | 2008-12-11 02:37:36 +0000 |
---|---|---|
committer | Lars Strojny <lstrojny@php.net> | 2008-12-11 02:37:36 +0000 |
commit | 1f4fd81a275ea7295499bb086d48fb182d0feeda (patch) | |
tree | 0e6a712abcea0618c9e3cda748100c66b5ecbd75 | |
parent | 2ea67808735fcfbda252f309880c4e659220087d (diff) | |
download | php-git-1f4fd81a275ea7295499bb086d48fb182d0feeda.tar.gz |
Fixing strict warning when null is passed
-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 f8f634987b..f713f74339 100755 --- a/run-tests.php +++ b/run-tests.php @@ -1009,7 +1009,7 @@ function system_with_timeout($commandline, $env = null, $stdin = null) $data = ''; $bin_env = array(); - foreach($env as $key => $value) { + foreach((array)$env as $key => $value) { $bin_env[(binary)$key] = (binary)$value; } |