X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwebmail.php;h=538dec2da1cbccd7c5c05fc133fac2b1c0346f73;hb=53da506bb70c0f4420af761354272a60d4b797cb;hp=9825da3d2adf59b1e9dc8ad43d0b7c548ac695e1;hpb=8f6f9ba5df6491d396aa690dcf3e5b9070a565ca;p=squirrelmail.git diff --git a/src/webmail.php b/src/webmail.php index 9825da3d..538dec2d 100644 --- a/src/webmail.php +++ b/src/webmail.php @@ -63,13 +63,25 @@ if ($my_language != $squirrelmail_language) { setcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri); } -set_up_language(getPref($data_dir, $username, 'language')); +$err=set_up_language(getPref($data_dir, $username, 'language')); echo "\n". "\n" . "$org_title\n". ""; +// Japanese translation used without mbstring support +if ($err==2) { + echo "\n". + "

You need to have php4 installed with the multibyte string function \n". + "enabled (using configure option --enable-mbstring).

\n". + "

System assumed that you accidently switched to Japanese translation \n". + "and reverted your language preference to English.

\n". + "

Please refresh this page in order to use webmail.

\n". + ""; + return; +} + $left_size = getPref($data_dir, $username, 'left_size'); $location_of_bar = getPref($data_dir, $username, 'location_of_bar');