From bf85b3768b1b7cb3bd5d33241971d30b71ff2f33 Mon Sep 17 00:00:00 2001 From: "bzbarsky%mit.edu" Date: Sat, 19 Oct 2002 20:44:14 +0000 Subject: [PATCH] this would be build bustage in C++. ;) Bug 175447, r=mcsmurf (Frank Wein), sr=bzbarsky, a=dbaron --- xpfe/browser/resources/content/pageInfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpfe/browser/resources/content/pageInfo.js b/xpfe/browser/resources/content/pageInfo.js index c476a068580..4ac4c6114ad 100644 --- a/xpfe/browser/resources/content/pageInfo.js +++ b/xpfe/browser/resources/content/pageInfo.js @@ -446,7 +446,7 @@ function makeTabs(aDocument, aWindow) { var num = aWindow.frames.length; for (var i = 0; i < num; i++) - makeTab(aWindow.frames[i].document, aWindow.frames[i]); // recurse through the frames + makeTabs(aWindow.frames[i].document, aWindow.frames[i]); // recurse through the frames } var formTree = document.getElementById("formtree");