diff options
author | foobar <sniper@php.net> | 2006-04-10 15:09:15 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2006-04-10 15:09:15 +0000 |
commit | 6af3218f810bda730645762ca386787452aa0a36 (patch) | |
tree | 6e8c6dedc9443a2634244a6fc32294641bab5029 /tests | |
parent | 672266c735aec36f18d0b8b828e6179b46bd7eb6 (diff) | |
download | php-git-6af3218f810bda730645762ca386787452aa0a36.tar.gz |
more cleanup (lingering ini settings which do not exist anymore, etc.)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basic/012.phpt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/basic/012.phpt b/tests/basic/012.phpt index 3297853286..183eaae405 100644 --- a/tests/basic/012.phpt +++ b/tests/basic/012.phpt @@ -10,10 +10,8 @@ ab cd ef 123 test --FILE-- <?php -if (!ini_get('register_globals')) { - $argc = $_SERVER['argc']; - $argv = $_SERVER['argv']; -} +$argc = $_SERVER['argc']; +$argv = $_SERVER['argv']; for ($i=1; $i<$argc; $i++) { echo ($i-1).": ".$argv[$i]."\n"; |