Bug #17145
closedincorrect patch / closed issue #17136
0%
Description
unfortunately i cannot add a note to issue #17136 because it's closed.
the patch for issue 5266 is incomplete.
the patch tries to exclude following browser identifier
[code]
Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3
[/code]
with this line
[code]
HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || (HTMLArea.is_gecko && HTMLArea.agt.indexOf("1.3") != -1 && HTMLArea.agt.indexOf(".1.3") == -1);
[/code]
this condition will still won't exclude future firefox versions, example:
[code]
Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.3) Gecko/20070309 Firefox/2.0.0.3
[/code]
so the same bug will reappear in about half a year.
(issue imported from #M5279)
Updated by Michael Stucki over 17 years ago
I've closed this in favour of reopening #5266 again.