Commit 0d5b8b7c authored by Medicean's avatar Medicean

fix #256

parent a273062b
...@@ -145,16 +145,14 @@ class ViewSite { ...@@ -145,16 +145,14 @@ class ViewSite {
data.push({ data.push({
id: i + 1, id: i + 1,
data: [ data: [
c.name, c.value, c.domain, c.path, c.session ? antSword.noxss(c.name),
'Session' : antSword.noxss(c.value),
new Date(c.expirationDate).toUTCString(), antSword.noxss(c.domain),
antSword.noxss(c.path),
c.session ? 'Session' : new Date(c.expirationDate).toUTCString(),
c.name.length + c.value.length, c.name.length + c.value.length,
c.httpOnly ? c.httpOnly ? 'httpOnly' : '',
'httpOnly' : c.secure ? 'Secure' : ''
'',
c.secure ?
'Secure' :
''
] ]
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment