From c6134c346c7268ea7517358f58a5a2f512c5d748 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sat, 9 Aug 2003 21:00:42 +0000 Subject: [PATCH] Use getenv() rather then $_ENV, the latter is not always avaliable. --- ext/mbstring/tests/php_gr_jp_16242.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mbstring/tests/php_gr_jp_16242.phpt b/ext/mbstring/tests/php_gr_jp_16242.phpt index a4dc60dc3c..774b4fb1e6 100644 --- a/ext/mbstring/tests/php_gr_jp_16242.phpt +++ b/ext/mbstring/tests/php_gr_jp_16242.phpt @@ -21,7 +21,7 @@ $cmd = 'echo "" |'.$_ENV["TEST_PHP_EXECUTABLE"].' -c '.$tmpfile; +$cmd .= ' ?>" |'.getenv("TEST_PHP_EXECUTABLE").' -c '.$tmpfile; system($cmd); -- 2.40.0