diff options
author | Christopher Jones <sixd@php.net> | 2009-03-17 01:52:52 +0000 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2009-03-17 01:52:52 +0000 |
commit | 1d5dbea704dedba12d770f00ada2c6c932631e43 (patch) | |
tree | 6f1585f7d41ff69d379178753d6fc7cef200fe0e | |
parent | 7f373057efd66cefbfa2bfa88631fc4907f299d2 (diff) | |
download | php-git-1d5dbea704dedba12d770f00ada2c6c932631e43.tar.gz |
Fix INI blocks
5 files changed, 5 insertions, 5 deletions
diff --git a/ext/standard/tests/assert/assert03.phpt b/ext/standard/tests/assert/assert03.phpt index 3fe6abd591..d839414cab 100644 --- a/ext/standard/tests/assert/assert03.phpt +++ b/ext/standard/tests/assert/assert03.phpt @@ -1,6 +1,6 @@ --TEST-- assert() - set callback using ini_set() ----INI--- +--INI-- assert.active = 1 assert.warning = 0 assert.callback = diff --git a/ext/standard/tests/assert/assert04.phpt b/ext/standard/tests/assert/assert04.phpt index 5b7a77a9c2..0da23186e6 100644 --- a/ext/standard/tests/assert/assert04.phpt +++ b/ext/standard/tests/assert/assert04.phpt @@ -1,6 +1,6 @@ --TEST-- misc assert() tests tests ----INI--- +--INI-- assert.active = 1 assert.warning = 1 assert.callback = diff --git a/ext/standard/tests/general_functions/get_magic_quotes_runtime.phpt b/ext/standard/tests/general_functions/get_magic_quotes_runtime.phpt index 761accce34..fca064d840 100644 --- a/ext/standard/tests/general_functions/get_magic_quotes_runtime.phpt +++ b/ext/standard/tests/general_functions/get_magic_quotes_runtime.phpt @@ -1,6 +1,6 @@ --TEST-- Test get_magic_quotes_runtime() function ---INI- +--INI-- magic_quotes_runtime = 0 --FILE-- <?php diff --git a/ext/standard/tests/general_functions/set_magic_quotes_runtime_basic.phpt b/ext/standard/tests/general_functions/set_magic_quotes_runtime_basic.phpt index 15eed373b9..eb647435ac 100644 --- a/ext/standard/tests/general_functions/set_magic_quotes_runtime_basic.phpt +++ b/ext/standard/tests/general_functions/set_magic_quotes_runtime_basic.phpt @@ -1,6 +1,6 @@ --TEST-- Test set_magic_quotes_runtime() function - basic test ---INI- +--INI-- magic_quotes_runtime = 0 --FILE-- <?php diff --git a/ext/standard/tests/general_functions/set_magic_quotes_runtime_variation1.phpt b/ext/standard/tests/general_functions/set_magic_quotes_runtime_variation1.phpt index 82e643d85d..843dbe22f3 100644 --- a/ext/standard/tests/general_functions/set_magic_quotes_runtime_variation1.phpt +++ b/ext/standard/tests/general_functions/set_magic_quotes_runtime_variation1.phpt @@ -1,6 +1,6 @@ --TEST-- Test set_magic_quotes_runtime() function - usage variation ---INI- +--INI-- magic_quotes_runtime = 0 --FILE-- <?php |