283744 - expiration dates for cookies aren't in a human readable format

This commit is contained in:
ben%bengoodger.com 2005-02-27 07:54:53 +00:00
Родитель 4769f57b2c
Коммит acaf0759b4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -478,7 +478,7 @@ var gCookiesWindow = {
"expires"];
if (aItem && !aItem.container && seln.count > 0) {
properties = { name: aItem.name, value: aItem.value, host: aItem.host,
path: aItem.path, expires: aItem.expires,
path: aItem.path, expires: this.formatExpiresString(aItem.expires),
isDomain: aItem.isDomain ? this._bundle.getString("domainColon")
: this._bundle.getString("hostColon"),
isSecure: aItem.isSecure ? this._bundle.getString("forSecureOnly")