diff options
author | Sergey Kartashoff <gluke@php.net> | 2002-08-04 18:58:20 +0000 |
---|---|---|
committer | Sergey Kartashoff <gluke@php.net> | 2002-08-04 18:58:20 +0000 |
commit | 7fd1881692c6bd81820c7ee4e1804350446ff835 (patch) | |
tree | ccafa93cb09a661e19a5e01dc3643dc72166b96b /ext/mnogosearch | |
parent | 83a09ac1f9ff9f65c7b77c17d063d991c5fb97b9 (diff) | |
download | php-git-7fd1881692c6bd81820c7ee4e1804350446ff835.tar.gz |
- a small fix to mnogosearch extension (affecting UDM_BROWSER_CHARSET)
Diffstat (limited to 'ext/mnogosearch')
-rw-r--r-- | ext/mnogosearch/php_mnogo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mnogosearch/php_mnogo.c b/ext/mnogosearch/php_mnogo.c index 507467e979..b9846df89b 100644 --- a/ext/mnogosearch/php_mnogo.c +++ b/ext/mnogosearch/php_mnogo.c @@ -807,7 +807,7 @@ DLEXPORT PHP_FUNCTION(udm_set_agent_param) UdmVarListReplaceStr(&Agent->Conf->Vars,"BrowserCharset",val); { const char * charset=UdmVarListFindStr(&Agent->Conf->Vars,"BrowserCharset","iso-8859-1"); - Agent->Conf->lcs=UdmGetCharSet(charset); + Agent->Conf->bcs=UdmGetCharSet(charset); } #else Agent->Conf->browser_charset=strdup(val); |