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

Fixed typo in eregi backward compatibility.

parent bd879301
No related branches found
Tags 6.5.0
No related merge requests found
......@@ -2330,7 +2330,7 @@ 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 ereg($pattern, $str) { return php7_compat_ereg($pattern, $str, true); } }
if (!function_exists('eregi')) { function eregi($pattern, $str) { return php7_compat_ereg($pattern, $str, true); } }
?>
\ No newline at end of file
?>
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