From 317d462e184df0f7577ba6ec4d9a96d420cf761d Mon Sep 17 00:00:00 2001 From: "hyatt%mozilla.org" Date: Sun, 10 Aug 2003 22:28:28 +0000 Subject: [PATCH] Fix for 179336, make sure the page report for blocked popups shows the right page url. --- toolkit/content/widgets/browser.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toolkit/content/widgets/browser.xml b/toolkit/content/widgets/browser.xml index 8a4b3addfe3..1efb8b19c6e 100644 --- a/toolkit/content/widgets/browser.xml +++ b/toolkit/content/widgets/browser.xml @@ -389,7 +389,8 @@ this.updatePageReport(); } - this.pageReport.push(evt.target.location); + // The "" is a hack to force a convert to string to defeat the "liveness" of the .location property. + this.pageReport.push(evt.target.location + ""); ]]>