From daae4801f9795a384394d24b39b798f140ac2ec5 Mon Sep 17 00:00:00 2001 From: Elmar Ludwig Date: Sat, 11 Oct 2008 22:50:01 +0330 Subject: [PATCH] Bug 458579 - Feed tab missing in page info --- browser/base/content/pageinfo/feeds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/base/content/pageinfo/feeds.js b/browser/base/content/pageinfo/feeds.js index 793b78f6889..0d754c97905 100644 --- a/browser/base/content/pageinfo/feeds.js +++ b/browser/base/content/pageinfo/feeds.js @@ -65,7 +65,7 @@ function initFeedTab() var type = isValidFeed(link, gDocument.nodePrincipal, rels.feed); if (type) { type = feedTypes[type] || feedTypes["application/rss+xml"]; - addRow(feed.title, type, feed.href); + addRow(link.title, type, link.href); } } }