| Index: chrome/content/ui/sendReport.js |
| =================================================================== |
| --- a/chrome/content/ui/sendReport.js |
| +++ b/chrome/content/ui/sendReport.js |
| @@ -752,17 +752,17 @@ var subscriptionUpdateDataSource = |
| for (let i = 0; i < this.outdated.length; i++) |
| { |
| let subscription = this.outdated[i]; |
| let entry = template.cloneNode(true); |
| entry.removeAttribute("id"); |
| entry.removeAttribute("hidden"); |
| entry.setAttribute("_url", subscription.url); |
| entry.setAttribute("tooltiptext", subscription.url); |
| - entry.textContent = subscription.title; |
| + entry.textContent = getSubscriptionTitle(subscription); |
| list.appendChild(entry); |
| } |
| } |
| return !E("updateInProgress").hidden || !E("outdatedSubscriptions").hidden; |
| }, |
| showPage: function() |
| { |
| @@ -991,18 +991,18 @@ var issuesDataSource = |
| if (this.disabledSubscriptions.length && !disabledSubscriptionsBox.firstChild) |
| { |
| let template = E("issuesDisabledSubscriptionsTemplate"); |
| for (let subscription of this.disabledSubscriptions) |
| { |
| let element = template.cloneNode(true); |
| element.removeAttribute("id"); |
| element.removeAttribute("hidden"); |
| - element.firstChild.setAttribute("value", subscription.title); |
| - element.setAttribute("tooltiptext", subscription instanceof DownloadableSubscription ? subscription.url : subscription.title); |
| + element.firstChild.setAttribute("value", getSubscriptionTitle(subscription)); |
| + element.setAttribute("tooltiptext", subscription instanceof DownloadableSubscription ? subscription.url : getSubscriptionTitle(subscription)); |
| element.abpSubscription = subscription; |
| disabledSubscriptionsBox.appendChild(element); |
| } |
| } |
| E("issuesDisabledSubscriptionsBox").hidden = (type != "false negative" || this.disabledSubscriptions.length == 0); |
| let disabledFiltersBox = E("issuesDisabledFilters"); |
| if (this.disabledFilters.length && !disabledFiltersBox.firstChild) |