diff --git a/NEWS b/NEWS index e6fe36e0f..628a91987 100644 --- a/NEWS +++ b/NEWS @@ -10,6 +10,7 @@ - added tooltips for toolbar buttons (English and French); - added checkmarks in live search options popup menus; - initial support for resizable columns in tables; +- improved IE7 and Safari support: attendees selector; - countless bugfixes; 0.9.0-20070824 diff --git a/UI/MainUI/SOGoUserHomePage.m b/UI/MainUI/SOGoUserHomePage.m index 910155833..032a615fa 100644 --- a/UI/MainUI/SOGoUserHomePage.m +++ b/UI/MainUI/SOGoUserHomePage.m @@ -221,6 +221,11 @@ static NSString *defaultModule = nil; date = [NSCalendarDate calendarDate]; [cookie setExpires: [date yesterday]]; [response addCookie: cookie]; + + [response setHeader: date forKey: @"Last-Modified"]; + [response setHeader: @"no-store, no-cache, must-revalidate, max-age=0" forKey: @"Cache-Control"]; + [response setHeader: @"post-check=0, pre-check=0" forKey: @"Cache-Control"]; + [response setHeader: @"no-cache" forKey: @"Pragma"]; return response; } diff --git a/UI/Templates/ContactsUI/UIxContactView.wox b/UI/Templates/ContactsUI/UIxContactView.wox index adfdbeaca..888752b0d 100644 --- a/UI/Templates/ContactsUI/UIxContactView.wox +++ b/UI/Templates/ContactsUI/UIxContactView.wox @@ -20,7 +20,6 @@ /> 0) value += attendeesNames[i] + " "; value += "<" + attendeesEmails[i] + ">"; input.value = value; - input.addClassName("textField"); + $(input).addClassName("textField"); input.setAttribute("modified", "0"); tr.appendChild(td); td.appendChild(input);