diff options
author | alecpl <alec@alec.pl> | 2011-04-14 12:46:09 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-04-14 12:46:09 +0000 |
commit | 5c4c06665c23d9b8fe3d6a47e15d0b3f6daee368 (patch) | |
tree | e47824397aa60c740dec69853e6843fd46f4e47c /program/include/iniset.php | |
parent | ae1db2239e4c2a67f09ecc6d35b70fc7079425bf (diff) |
- Fixed vcard folding: use one space, use mb_regex_encoding() (#1487868)
Diffstat (limited to 'program/include/iniset.php')
-rwxr-xr-x | program/include/iniset.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php index 192de7984..a6c4666d7 100755 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -74,9 +74,10 @@ ini_set('error_reporting', E_ALL&~E_NOTICE); @set_time_limit(120); // set internal encoding for mbstring extension -if(extension_loaded('mbstring')) +if (extension_loaded('mbstring')) { mb_internal_encoding(RCMAIL_CHARSET); - + @mb_regex_encoding(RCMAIL_CHARSET); +} /** * Use PHP5 autoload for dynamic class loading |