From 47a08011e7e9e1f3574a48ecf533b554761b3e17 Mon Sep 17 00:00:00 2001 From: Vivien Nicolas <21@vingtetun.org> Date: Wed, 14 Apr 2010 17:14:50 -0400 Subject: [PATCH] Bug 559413 - getAllLogin call should be replace by findLogins [r=mfinkle] --- mobile/chrome/content/browser-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/chrome/content/browser-ui.js b/mobile/chrome/content/browser-ui.js index cb8ff715dec5..5bcec79c6542 100644 --- a/mobile/chrome/content/browser-ui.js +++ b/mobile/chrome/content/browser-ui.js @@ -928,7 +928,7 @@ var PageActions = { } let siteLogins = []; - let allLogins = lm.getAllLogins({}); + let allLogins = lm.findLogins({}, host.prePath, "", null); for (let i = 0; i < allLogins.length; i++) { let login = allLogins[i]; if (login.hostname != host.prePath)