Files
roundcubemail/program
Kizashi Nagata 51db344a4d Fix link pattern matching HTML tag characters in URL path (#10115)
The link_pattern introduced in 2c3b46c1f uses \S (non-whitespace) for
the URL path segment, which also matches <, >, ", and ' characters.
This causes URLs inside HTML-like markup in plain text (e.g.
<a href="https://example.com/">click here</a>) to consume the tag
characters as part of the URL.

Replace \S with [^\s<>"'] to exclude HTML tag delimiters and quote
characters from URL path matching, and [^\s.:;,] with [^\s.:;,<>"']
for the path segment terminator.
2026-03-14 11:50:24 +01:00
..
2026-01-25 13:03:05 +01:00
2026-01-04 13:39:51 +01:00
2026-02-22 15:43:51 +01:00
2020-07-11 18:46:17 +02:00