diff options
author | Antony Dovgal <tony2001@php.net> | 2010-04-26 13:41:43 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2010-04-26 13:41:43 +0000 |
commit | 76b36c0003f0706beeed26ea0c5bff90d9370d9f (patch) | |
tree | 2c293caa4bdf60dbe8c6dd7354f8b1db622ae6c4 | |
parent | 7ab8fd9c0a5695a2936f2f4064519faec518e150 (diff) | |
download | php-git-76b36c0003f0706beeed26ea0c5bff90d9370d9f.tar.gz |
fix skipif sections
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/general_functions/import_request.phpt b/ext/standard/tests/general_functions/import_request.phpt index 9d4ee80372..2b49cede78 100644 --- a/ext/standard/tests/general_functions/import_request.phpt +++ b/ext/standard/tests/general_functions/import_request.phpt @@ -1,7 +1,7 @@ --TEST-- import_request_variables() tests --SKIPIF-- -<?php if(PHP_VERSION_ID < 503099){ die('Not needed anymore without register_globals'); } ?> +<?php if(PHP_VERSION_ID < 503099){ die('skip not needed anymore without register_globals'); } ?> --GET-- a=1&b=heh&c=3&d[]=5&GLOBALS=test&1=hm --POST-- diff --git a/ext/standard/tests/general_functions/import_request1.phpt b/ext/standard/tests/general_functions/import_request1.phpt index 49259efaaa..7df0583df1 100644 --- a/ext/standard/tests/general_functions/import_request1.phpt +++ b/ext/standard/tests/general_functions/import_request1.phpt @@ -1,7 +1,7 @@ --TEST-- import_request_variables() test (overwrite super-globals) --SKIPIF-- -<?php if(PHP_VERSION_ID < 503099){ die('Not needed anymore without register_globals'); } ?> +<?php if(PHP_VERSION_ID < 503099){ die('skip not needed anymore without register_globals'); } ?> --GET-- GET=0&POST=1&COOKIE=2&FILES=3&REQUEST=4 --POST-- diff --git a/ext/standard/tests/general_functions/import_request2.phpt b/ext/standard/tests/general_functions/import_request2.phpt index b3522ddd12..c52db5c027 100644 --- a/ext/standard/tests/general_functions/import_request2.phpt +++ b/ext/standard/tests/general_functions/import_request2.phpt @@ -1,7 +1,7 @@ --TEST-- import_request_variables() test (numeric keys) --SKIPIF-- -<?php if(PHP_VERSION_ID < 503099){ die('Not needed anymore without register_globals'); } ?> +<?php if(PHP_VERSION_ID < 503099){ die('skip not needed anymore without register_globals'); } ?> --GET-- 1=0&2=1&3=2&4=3&5=4 --POST-- diff --git a/ext/standard/tests/general_functions/import_request3.phpt b/ext/standard/tests/general_functions/import_request3.phpt index bfa21b3020..baa86128ce 100644 --- a/ext/standard/tests/general_functions/import_request3.phpt +++ b/ext/standard/tests/general_functions/import_request3.phpt @@ -1,7 +1,7 @@ --TEST-- import_request_variables() test (numeric keys, different order) --SKIPIF-- -<?php if(PHP_VERSION_ID < 503099){ die('Not needed anymore without register_globals'); } ?> +<?php if(PHP_VERSION_ID < 503099){ die('skip not needed anymore without register_globals'); } ?> --GET-- 1=0&2=1&3=2&4=3&5=4 --POST-- |