mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 278341 - [mozTXTToHTMLConv] A colon (:) after a URL in a message is recognized as part of the URL. r=BenB
This commit is contained in:
parent
b710b34204
commit
9a51b50c97
@ -358,7 +358,7 @@ mozTXTToHTMLConv::FindURLEnd(const PRUnichar * aInString, PRInt32 aInStringLengt
|
||||
while (--i > pos && (
|
||||
aInString[i] == '.' || aInString[i] == ',' || aInString[i] == ';' ||
|
||||
aInString[i] == '!' || aInString[i] == '?' || aInString[i] == '-' ||
|
||||
aInString[i] == '\''
|
||||
aInString[i] == ':' || aInString[i] == '\''
|
||||
))
|
||||
;
|
||||
if (i > pos)
|
||||
|
Loading…
Reference in New Issue
Block a user