Fixed the print button from the mail module + updated NEWS file

Monotone-Parent: 2093fd32a32150f9c5060bac5619eea2dbc2f08d
Monotone-Revision: 8c3f435e214cb69b7980be52ef28c9a08c8f6385

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2010-07-20T17:30:54
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2010-07-20 17:30:54 +00:00
parent e6d7792536
commit c942ad9230
2 changed files with 5 additions and 1 deletions

3
NEWS
View File

@ -22,6 +22,9 @@
display
- added the ability to specify a time range when requesting a time slot
suggestion
- added live-loading support in the webmail interface with caching support
- updated CKEditor and improved its integration with the current user
language for automatic spell checking support
- added support for displaying photos from contacts
- added a Ukrainian translation
- updated the Czech translation

View File

@ -448,7 +448,8 @@ function deleteMessageWithDelay(url, id, mailbox, messageId) {
}
function onPrintCurrentMessage(event) {
var rowIds = $("messageList").getSelectedRowsId();
var messageList = $("messageListBody").down("TBODY");
var rowIds = messageList.getSelectedNodes();
if (rowIds.length == 0) {
window.alert(_("Please select a message to print."));
}