From 7bd936041439baa657e03c44f7bd31fd98279a47 Mon Sep 17 00:00:00 2001 From: Tim Taubert Date: Thu, 9 Feb 2012 17:41:11 +0100 Subject: [PATCH] Bug 725668 - [New Tab Page] Typo in NewTabUtils.jsm - undefined variable; r=dao --- browser/modules/NewTabUtils.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/modules/NewTabUtils.jsm b/browser/modules/NewTabUtils.jsm index 90130a39d78..549c64434b2 100644 --- a/browser/modules/NewTabUtils.jsm +++ b/browser/modules/NewTabUtils.jsm @@ -172,7 +172,7 @@ PrivateBrowsingStorage.prototype = { * Clears the storage and removes all values. */ clear: function PrivateBrowsingStorage_clear() { - this._data.listkeys().forEach(function (akey) { + this._data.listkeys().forEach(function (aKey) { this._data.del(aKey); }, this); }