@@ -, +, @@ attribute order only changes are found in the sort order of attributes in html tags. --- misc/translator/tmpl_process3.pl | 1 + 1 file changed, 1 insertion(+) --- a/misc/translator/tmpl_process3.pl +++ a/misc/translator/tmpl_process3.pl @@ -91,6 +91,7 @@ sub text_replace_tag ($$) { } sort { $attr->{$a}->[3] <=> $attr->{$b}->[3] #FIXME + || $a cmp $b # Sort attributes BZ 22236 } keys %$attr); $it .= '>'; } --