diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-05-30 13:20:01 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-05-30 13:20:01 +0000 |
commit | ff5fc53c5ec62f9afb021a9960024e6a9345186d (patch) | |
tree | a264b8081a15f41e7f5eb3594de9dc083b644407 | |
parent | c1b8e699e14ffee1b6eb46ea67f1258152c9d4bf (diff) | |
download | php-git-ff5fc53c5ec62f9afb021a9960024e6a9345186d.tar.gz |
Fixed bug #23897 (Fixed a check for mbfilter_ru.h) aleks@m2media.ru
-rw-r--r-- | ext/mbstring/mbfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mbstring/mbfilter.c b/ext/mbstring/mbfilter.c index a9e441f655..986077aa0f 100644 --- a/ext/mbstring/mbfilter.c +++ b/ext/mbstring/mbfilter.c @@ -107,7 +107,7 @@ #if defined(HAVE_MBSTR_KR) #include "mbfilter_kr.h" #endif -#if defined(HAVE_MBSTR_KR) +#if defined(HAVE_MBSTR_RU) #include "mbfilter_ru.h" #endif |