diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-10-19 15:13:14 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-10-19 15:13:14 +0200 |
commit | c96d3f57ef6a13e3e61338f57a473b4817547da8 (patch) | |
tree | ca3aff62ddf28f05119ed7d90e912fd969ba87e1 /program/include/rcube_string_replacer.php | |
parent | 9f0ca2dca669a3f379d8582f128b7cca7056a921 (diff) |
Match http://localhost/xxx as link
Diffstat (limited to 'program/include/rcube_string_replacer.php')
-rw-r--r-- | program/include/rcube_string_replacer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_string_replacer.php b/program/include/rcube_string_replacer.php index ad55dd87b..edb2ac34f 100644 --- a/program/include/rcube_string_replacer.php +++ b/program/include/rcube_string_replacer.php @@ -37,7 +37,7 @@ class rcube_string_replacer { // Simplified domain expression for UTF8 characters handling // 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,})'; + $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%=#$@+?!&\\/_~\\[\\]{}\*-'; |