diff options
author | Pierre Joye <pajoye@php.net> | 2011-07-22 11:56:20 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2011-07-22 11:56:20 +0000 |
commit | 45420bb6693baa76794df96ae6a8f8cdd7e09ccb (patch) | |
tree | d382ab94b5c598da8b88a57f3f075f34f1da0f5e /ext/pcre/tests | |
parent | 7c90a9daa8beb96cab012549a7700f8ca607efe1 (diff) | |
download | php-git-45420bb6693baa76794df96ae6a8f8cdd7e09ccb.tar.gz |
- remove magic quotes support, functions are kept (see the NEWS entry for the details) for BC reasons but do not allow to set enable MQ, missing tests changes in 5.4
Diffstat (limited to 'ext/pcre/tests')
-rw-r--r-- | ext/pcre/tests/bug33200.phpt | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ext/pcre/tests/bug33200.phpt b/ext/pcre/tests/bug33200.phpt index ddbb06519b..e69de29bb2 100644 --- a/ext/pcre/tests/bug33200.phpt +++ b/ext/pcre/tests/bug33200.phpt @@ -1,13 +0,0 @@ ---TEST-- -Bug #33200 (magic_quotes_sybase = On makes 'e' modifier misbehave) ---INI-- -magic_quotes_sybase=1 ---FILE-- -<?php -$str = 'some \'$sample\' text'; -$str = preg_replace("/(some.*text)/e", "strtoupper('\\1')", $str); -echo $str . "\r\n"; -?> ---EXPECT-- -Deprecated: Directive 'magic_quotes_sybase' is deprecated in PHP 5.3 and greater in Unknown on line 0 -SOME '$SAMPLE' TEXT |