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
Родитель c8bd09546c
Коммит 62c289db73
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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();