Skip to content
Snippets Groups Projects
Commit 2d1a1ae4 authored by Prasad's avatar Prasad
Browse files

php7 compact for *_magic_quotes_runtime

parent 05326ce4
No related branches found
No related tags found
No related merge requests found
......@@ -2338,5 +2338,8 @@ function php7_compat_ereg($pattern, $str, $ignore_case=false) {
if (!function_exists('ereg')) { function ereg($pattern, $str) { return php7_compat_ereg($pattern, $str); } }
if (!function_exists('eregi')) { function eregi($pattern, $str) { return php7_compat_ereg($pattern, $str, true); } }
if (!function_exists('get_magic_quotes_runtime')) { function get_magic_quotes_runtime() { return false; } }
if (!function_exists('set_magic_quotes_runtime')) { function set_magic_quotes_runtime($flag) {} }
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment