https://bugzilla.wikimedia.org/show_bug.cgi?id=46837
Andre Klapper <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|Low |Lowest --- Comment #1 from Andre Klapper <[email protected]> --- The current regex \[\[([a-zA-Z0-9_ ,./'()!#\*\$%:\x80-\xff-]+)\]\] does not match [[vi:Wikipedia:Thảo luận#Patroller và autopatroller]] due to ảậ not being included in the allowed regex character ranges. Changing the regex to something less strict, like \[\[([a-zA-Z0-9_ ,./'()!#\*\$%:\u0080-\u024f\u1e00-\u1eff-]+)\]\] would theoretically fix that, though would still not support linebreaks. And this works when testing the regex in Firefox with Javascript. In Bugzilla 4.2 (Perl) it does not work. Perl seems to not interpret \u correctly, because I also tried with \u0080-\u00ff instead of current \x80-\xff which should show the same successful linking but it doesn't, and I think we don't want to allow any random characters here (though I'm not aware of any potential security implications). -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
