Changeset b6c512a in github
- Timestamp:
- Oct 22, 2009 2:37:00 PM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- c3456e9
- Parents:
- ee51070
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_shared.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
re4acbbd rb6c512a 4 4 - Added server-side e-mail address validation with 'email_dns_check' option (#1485857) 5 5 - Fix login page loading into an iframe when session expires (#1485952) 6 - added option 'force_https_port' in 'force_https' plugin (#1486091)6 - Allow setting port number in 'force_https' option (#1486091) 7 7 - Option 'force_https' replaced by 'force_https' plugin 8 8 - Fix IE issue with non-UTF-8 characters in AJAX response (#1486159) -
program/include/rcube_shared.inc
r1a00f13 rb6c512a 600 600 } 601 601 602 if (!is_string($input) )602 if (!is_string($input) || $input == '') 603 603 return $input; 604 604 605 // iconv is 10x faster 606 if (function_exists('iconv')) 607 return iconv('UTF8', 'UTF8//IGNORE', $input); 605 // iconv/mbstring are much faster (especially with long strings) 606 if (function_exists('mb_convert_encoding') && ($res = mb_convert_encoding($input, 'UTF8', 'UTF8'))) 607 return $res; 608 609 if (function_exists('iconv') && ($res = iconv('UTF8', 'UTF8//IGNORE', $input))) 610 return $res; 608 611 609 612 $regexp = '/^('.
Note: See TracChangeset
for help on using the changeset viewer.
