summaryrefslogtreecommitdiffstats
path: root/frontends/php/locales.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-01-22 08:27:29 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-01-22 08:27:29 +0000
commitea3bf2726f4600d556df46bdc78945a002cc4c01 (patch)
tree6843a846fd88d89197fa828b37cd31124d379a3f /frontends/php/locales.php
parentb6f0565a4e0809d29950d26e95050ff4a3deaa8f (diff)
downloadzabbix-ea3bf2726f4600d556df46bdc78945a002cc4c01.tar.gz
zabbix-ea3bf2726f4600d556df46bdc78945a002cc4c01.tar.xz
zabbix-ea3bf2726f4600d556df46bdc78945a002cc4c01.zip
- [DEV-97] minor fix (Artem);
git-svn-id: svn://svn.zabbix.com/trunk@5269 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/locales.php')
-rw-r--r--frontends/php/locales.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/locales.php b/frontends/php/locales.php
index 9f238063..3a4a5441 100644
--- a/frontends/php/locales.php
+++ b/frontends/php/locales.php
@@ -221,7 +221,7 @@ else if(isset($_REQUEST['next'])){
$valueTo=$value;
}
- if(function_exists('mb_convert_encoding'))
+ if(function_exists('mb_convert_encoding')){
$value = mb_convert_encoding($value,'UTF-8',mb_detect_encoding($value,'UTF-8, iso-8859-1, GB2312'));
$valueTo = mb_convert_encoding($valueTo,'UTF-8',mb_detect_encoding($valueTo,'UTF-8, iso-8859-1, GB2312'));
}