diff options
author | Byron Jones <bjones@mozilla.com> | 2012-09-25 16:22:56 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-09-25 16:22:56 +0200 |
commit | fa8ddc3179ace6ff18c0df8bb0e2d11ffb1b6ca2 (patch) | |
tree | dd338486b24b648c117b78085d2f9562de43c30b /extensions/InlineHistory/web | |
parent | ac21d130577c44f6887ae8520abac5a60aeba1b0 (diff) | |
download | bugzilla-fa8ddc3179ace6ff18c0df8bb0e2d11ffb1b6ca2.tar.gz bugzilla-fa8ddc3179ace6ff18c0df8bb0e2d11ffb1b6ca2.tar.xz |
Bug 783091: Missing links when there are multiple "review?(foo)" shown in attachment box on show_bug.cgi
Diffstat (limited to 'extensions/InlineHistory/web')
-rw-r--r-- | extensions/InlineHistory/web/inline-history.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/InlineHistory/web/inline-history.js b/extensions/InlineHistory/web/inline-history.js index e07872c9e..973ae09ec 100644 --- a/extensions/InlineHistory/web/inline-history.js +++ b/extensions/InlineHistory/web/inline-history.js @@ -264,7 +264,7 @@ var inline_history = { ) { html += setterSpan + ': ' - + '<a href="#' + flagItem[5] + '">' + flag + '</a>' + + '<a href="#' + flagItem[5] + '">' + flag + '</a> ' + requestee + '<br>'; found = true; break; @@ -373,6 +373,7 @@ var inline_history = { }, htmlDecode: function(v) { + if (!v.match(/&/)) return v; var e = document.createElement('textarea'); e.innerHTML = v; return e.value; |