another fix for bug 22117, cookie viewer display not working, r=goodger

This commit is contained in:
morse%netscape.com 2000-01-15 05:10:40 +00:00
parent 94b65d019c
commit 0bf84e3705

View File

@ -240,9 +240,9 @@ function CreatePermissionList()
// purpose : an home-brewed object that represents a individual permission in the stream
function Permission(number,type,domain)
{
this.number = (arguments.length) ? number : null;
this.type = (arguments.length) ? type : null;
this.domain = (arguments.length) ? domain : null;
this.number = (number) ? number : null;
this.type = (type) ? type : null;
this.domain = (domain) ? domain : null;
}
// function : <CookieViewer.js>::loadPermissions();