Bug 227019 Cookie sites is blank if opened from cookie icon r=dwitte sr=darin
git-svn-id: svn://10.0.0.236/trunk@204874 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
e770e69b3a
commit
0815c7d69d
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user