diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-16 16:00:33 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-16 16:01:25 +0200 |
commit | 5c8e60d45de9dd2e44ef4fde77ab777ae7f9410f (patch) | |
tree | c7f968c7496b89ad29561763be9d5218ce0db6ba /program/lib | |
parent | c9feba8917a9e670ffeaa39af75b97a7a1554bf0 (diff) |
Fix handling unicode characters in links (#1489898)
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_string_replacer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_string_replacer.php b/program/lib/Roundcube/rcube_string_replacer.php index 77b91d18b..ce61e5367 100644 --- a/program/lib/Roundcube/rcube_string_replacer.php +++ b/program/lib/Roundcube/rcube_string_replacer.php @@ -42,7 +42,7 @@ class rcube_string_replacer // Support unicode/punycode in top-level domain part $utf_domain = '[^?&@"\'\\/()<>\s\r\t\n]+\\.?([^\\x00-\\x2f\\x3b-\\x40\\x5b-\\x60\\x7b-\\x7f]{2,}|xn--[a-zA-Z0-9]{2,})'; $url1 = '.:;,'; - $url2 = 'a-zA-Z0-9%=#$@+?|!&\\/_~\\[\\]\\(\\){}\*-'; + $url2 = 'a-zA-Z0-9%=#$@+?|!&\\/_~\\[\\]\\(\\){}\*\x80-\xFE-'; $this->link_pattern = "/([\w]+:\/\/|\W[Ww][Ww][Ww]\.|^[Ww][Ww][Ww]\.)($utf_domain([$url1]*[$url2]+)*)/"; $this->mailto_pattern = "/(" |