From: Lars Strojny Date: Thu, 11 Dec 2008 02:38:44 +0000 (+0000) Subject: MFB: Fixing strict warning X-Git-Tag: NEWS~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5b6ae48f792fc0d7590137b57927ae9fe9cf495;p=php MFB: Fixing strict warning --- 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; }