summaryrefslogtreecommitdiffstats
path: root/extensions/InlineHistory/web/inline-history.js
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-09-25 16:22:56 +0200
committerByron Jones <bjones@mozilla.com>2012-09-25 16:22:56 +0200
commitfa8ddc3179ace6ff18c0df8bb0e2d11ffb1b6ca2 (patch)
treedd338486b24b648c117b78085d2f9562de43c30b /extensions/InlineHistory/web/inline-history.js
parentac21d130577c44f6887ae8520abac5a60aeba1b0 (diff)
downloadbugzilla-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/inline-history.js')
-rw-r--r--extensions/InlineHistory/web/inline-history.js3
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;