diff options
author | alecpl <alec@alec.pl> | 2011-04-26 11:36:42 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-04-26 11:36:42 +0000 |
commit | 5c1dfb0b115f7873ad0c33c0f514d95653f58263 (patch) | |
tree | e6f5426d5d7a65533362a8d214a99a3c094f6808 /program/include | |
parent | 3d98b4d9148c2cb307199e68644101d6229def85 (diff) |
- Fix handling of top-level domains with more than 5 chars or unicode chars (#1487883)
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_string_replacer.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/rcube_string_replacer.php b/program/include/rcube_string_replacer.php index 28e1300c7..3c09326b2 100644 --- a/program/include/rcube_string_replacer.php +++ b/program/include/rcube_string_replacer.php @@ -36,7 +36,8 @@ class rcube_string_replacer function __construct() { // Simplified domain expression for UTF8 characters handling - $utf_domain = '[^?&@"\'\\/()\s\r\t\n]+\\.[a-z]{2,5}'; + // Support unicode/punycode in top-level domain part + $utf_domain = '[^?&@"\'\\/()\s\r\t\n]+\\.([^\\x00-\\x40\\x5b-\\x60\\x7b-\\x7f]{2,}|xn--[a-z0-9]{2,})'; $url1 = '.:;'; $url2 = 'a-z0-9%=#@+?&\\/_~\\[\\]-'; |