Changeset 4142 in subversion
- Timestamp:
- Oct 27, 2010 2:25:13 AM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_string_replacer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r4141 r4142 52 52 - Add support for selection options from LIST-EXTENDED extension (RFC 5258) 53 53 - Don't list subscribed but non-existent folders (#1486225) 54 - Fix handling of URLs with tilde (~) character (#1487087)54 - Fix handling of URLs with tilde (~) or semicolon (;) character (#1487087, #1487088) 55 55 56 56 RELEASE 0.4.2 -
trunk/roundcubemail/program/include/rcube_string_replacer.php
r4141 r4142 38 38 // Simplified domain expression for UTF8 characters handling 39 39 $utf_domain = '[^?&@"\'\\/()\s\r\t\n]+\\.[a-z]{2,5}'; 40 $url = '[a-z0-9%=# +?.:&\\/_~-]+';40 $url = '[a-z0-9%=#@+?.:;&\\/_~-]+'; 41 41 42 42 $this->link_pattern = "/([\w]+:\/\/|\Wwww\.)($utf_domain($url)?)/i"; … … 44 44 ."[-\w!\#\$%&\'*+~\/^`|{}=]+(?:\.[-\w!\#\$%&\'*+~\/^`|{}=]+)*" // local-part 45 45 ."@$utf_domain" // domain-part 46 ."(\?$url)?" // e.g. ?subject=test...46 ."(\?$url)?" // e.g. ?subject=test... 47 47 .")/i"; 48 48 }
Note: See TracChangeset
for help on using the changeset viewer.
