Bug 227019 Cookie sites is blank if opened from cookie icon r=dwitte sr=darin

This commit is contained in:
neil%parkwaycc.co.uk 2004-02-03 23:32:26 +00:00
Родитель bf847cefe1
Коммит 22f0ba2e18
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -177,7 +177,7 @@ var cookiesTreeView = {
} else if (column=="nameCol") {
rv = cookies[row].name;
} else if (column=="statusCol") {
rv = GetStatusString(cookies[row].status);
rv = cookies[row].status;
}
return rv;
},
@ -202,7 +202,7 @@ function Cookie(number,name,value,isDomain,host,rawHost,path,isSecure,expires,
this.path = path;
this.isSecure = isSecure;
this.expires = expires;
this.status = status;
this.status = GetStatusString(status);
this.policy = policy;
}

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

@ -177,7 +177,7 @@ var cookiesTreeView = {
} else if (column=="nameCol") {
rv = cookies[row].name;
} else if (column=="statusCol") {
rv = GetStatusString(cookies[row].status);
rv = cookies[row].status;
}
return rv;
},
@ -202,7 +202,7 @@ function Cookie(number,name,value,isDomain,host,rawHost,path,isSecure,expires,
this.path = path;
this.isSecure = isSecure;
this.expires = expires;
this.status = status;
this.status = GetStatusString(status);
this.policy = policy;
}