From 7ecf879e2d40e1f8147666bdd721971f200e5b03 Mon Sep 17 00:00:00 2001 From: "reed%reedloden.com" Date: Thu, 7 Feb 2008 16:00:03 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20416115=20-=20"session=20restore=20busted?= =?UTF-8?q?=20after=20393716=20checkin"=20(fix=20embarassing=20typo)=20[p?= =?UTF-8?q?=3Dzeniko@gmail.com=20(Simon=20B=EF=BF=BD=EF=BF=BDnzli)=20r=3Dd?= =?UTF-8?q?ietrich=20a=3Dbustage]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- browser/components/sessionstore/src/nsSessionStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/components/sessionstore/src/nsSessionStore.js b/browser/components/sessionstore/src/nsSessionStore.js index 1e149b5711a..6785599dcfd 100644 --- a/browser/components/sessionstore/src/nsSessionStore.js +++ b/browser/components/sessionstore/src/nsSessionStore.js @@ -1025,7 +1025,7 @@ SessionStoreService.prototype = { for (var i = 0; i < aEntry.childCount; i++) { var child = aEntry.GetChildAt(i); if (child) { - entry.children.push(this._serializeHistoryEntry(child), aFullData); + entry.children.push(this._serializeHistoryEntry(child, aFullData)); } else { // to maintain the correct frame order, insert a dummy entry entry.children.push({ url: "about:blank" });