diff options
| author | Felipe Pena <felipe@php.net> | 2010-09-27 23:09:00 +0000 |
|---|---|---|
| committer | Felipe Pena <felipe@php.net> | 2010-09-27 23:09:00 +0000 |
| commit | a9953ca3d45bf2e9cbf1250045a4fa91fb484ff2 (patch) | |
| tree | bbe6c308b72eb9d29ec9fdbdc0c7422255667a1e /ext/mbstring/mbstring.c | |
| parent | 5ff86a16d2dd164e9e004e35209e6e639b88b937 (diff) | |
| download | php-git-a9953ca3d45bf2e9cbf1250045a4fa91fb484ff2.tar.gz | |
- Fixed bug #52931 (strripos not overloaded with function overloading enabled)
Diffstat (limited to 'ext/mbstring/mbstring.c')
| -rw-r--r-- | ext/mbstring/mbstring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 1d4a0ec60c..72fe44b2a9 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -196,7 +196,7 @@ static const struct mb_overload_def mb_ovld[] = { {MB_OVERLOAD_STRING, "strpos", "mb_strpos", "mb_orig_strpos"}, {MB_OVERLOAD_STRING, "strrpos", "mb_strrpos", "mb_orig_strrpos"}, {MB_OVERLOAD_STRING, "stripos", "mb_stripos", "mb_orig_stripos"}, - {MB_OVERLOAD_STRING, "strripos", "mb_strripos", "mb_orig_stripos"}, + {MB_OVERLOAD_STRING, "strripos", "mb_strripos", "mb_orig_strripos"}, {MB_OVERLOAD_STRING, "strstr", "mb_strstr", "mb_orig_strstr"}, {MB_OVERLOAD_STRING, "strrchr", "mb_strrchr", "mb_orig_strrchr"}, {MB_OVERLOAD_STRING, "stristr", "mb_stristr", "mb_orig_stristr"}, |
