Bug 735676 - Fix Sanitizer.passwords.canClear. r=mleibovic

This commit is contained in:
Wes Johnston 2012-03-19 16:51:29 -07:00
parent 3057ab345d
commit 14b87ac70d

View File

@ -251,7 +251,7 @@ Sanitizer.prototype = {
get canClear()
{
Services.logins.countLogins("", "", ""); // count all logins
let count = Services.logins.countLogins("", "", ""); // count all logins
return (count > 0);
}
},