98180 r/sr=sspitzer. Do not preflight the date pikcer w/ current date, if there is already an exisiting

date
This commit is contained in:
naving%netscape.com 2001-09-04 22:58:12 +00:00
Родитель ce50e7630f
Коммит aca0d9328e
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -424,9 +424,14 @@
// initialize the status picker
this.initialize(document.getAnonymousNodes(this)[2], bundle);
// preflight the date picker to today's date
var datePicker = document.getAnonymousNodes(this)[3];
var time = new Date();
var searchAttribute = this.searchAttribute;
var nsMsgSearchAttrib = Components.interfaces.nsMsgSearchAttrib;
var time;
if (searchAttribute == nsMsgSearchAttrib.Date)
time = datePicker.value;
else
time = new Date();
datePicker.setAttribute("value",convertDateToString(time));
]]>
</constructor>