- Fixed ini deprecation message issues in tests.

# CGI headers are stripped and the error ends up there with CGI..
This commit is contained in:
Jani Taskinen 2009-05-06 20:32:00 +00:00
parent f719e30684
commit 996eab8983
3 changed files with 1 additions and 3 deletions

View file

@ -18,4 +18,3 @@ echo addcslashes($_GET['a'],"\0") . "\n";
unsafe_raw
1\0
PHP Warning: Directive 'magic_quotes_gpc' is deprecated in PHP 5.3 and greater in Unknown on line 0

View file

@ -9,5 +9,5 @@ $str = preg_replace("/(some.*text)/e", "strtoupper('\\1')", $str);
echo $str . "\r\n";
?>
--EXPECT--
SOME '$SAMPLE' TEXT
PHP Warning: Directive 'magic_quotes_sybase' is deprecated in PHP 5.3 and greater in Unknown on line 0
SOME '$SAMPLE' TEXT

View file

@ -10,4 +10,3 @@ echo $_GET['a'],"\n";
?>
--EXPECT--
abc\'\"\0123
PHP Warning: Directive 'magic_quotes_gpc' is deprecated in PHP 5.3 and greater in Unknown on line 0