From 7f554cfaecb52dbbc21c0c905bbc9e181db20b60 Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 8 Jul 2011 16:59:18 +0000 Subject: - Fix message delete button title when flag_for_deletion is enabled --- program/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'program') diff --git a/program/js/app.js b/program/js/app.js index 2f9bfbdf9..3143236d2 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -209,7 +209,7 @@ function rcube_webmail() $(this.gui_objects.qsearchbox).focusin(function() { rcmail.message_list.blur(); }); } - if (this.env.trash_mailbox && this.env.mailbox != this.env.trash_mailbox) + if (!this.env.flag_for_deletion && this.env.trash_mailbox && this.env.mailbox != this.env.trash_mailbox) this.set_alttext('delete', 'movemessagetotrash'); this.env.message_commands = ['show', 'reply', 'reply-all', 'reply-list', 'forward', @@ -526,7 +526,7 @@ function rcube_webmail() this.list_mailbox(props); - if (this.env.trash_mailbox) + if (this.env.trash_mailbox && !this.env.flag_for_deletion) this.set_alttext('delete', this.env.mailbox != this.env.trash_mailbox ? 'movemessagetotrash' : 'deletemessage'); } else if (this.task == 'addressbook') { -- cgit v1.2.3