From aa9836224019ec670984685acf77cf39d85357be Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Sun, 02 Mar 2008 09:46:43 -0500 Subject: [PATCH] Minor bug fixes and visual enhancements --- program/js/app.js | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index d1f0c93..bbd7bfc 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1387,11 +1387,8 @@ this.move_messages = function(mbox) { // exit if current or no mailbox specified or if selection is empty - if (!mbox || !this.env.uid || mbox==this.env.mailbox) - { - if (!this.message_list || !this.message_list.get_selection().length) - return; - } + if (!mbox || !this.env.uid || mbox == this.env.mailbox || !this.message_list || !this.message_list.get_selection().length) + return; var lock = false; var add_url = '&_target_mbox='+urlencode(mbox)+'&_from='+(this.env.action ? this.env.action : ''); -- Gitblit v1.9.1