Commit 0d5b8b7c authored by Medicean's avatar Medicean

fix #256

parent a273062b
......@@ -145,16 +145,14 @@ class ViewSite {
data.push({
id: i + 1,
data: [
c.name, c.value, c.domain, c.path, c.session ?
'Session' :
new Date(c.expirationDate).toUTCString(),
antSword.noxss(c.name),
antSword.noxss(c.value),
antSword.noxss(c.domain),
antSword.noxss(c.path),
c.session ? 'Session' : new Date(c.expirationDate).toUTCString(),
c.name.length + c.value.length,
c.httpOnly ?
'httpOnly' :
'',
c.secure ?
'Secure' :
''
c.httpOnly ? 'httpOnly' : '',
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