diff options
author | thomascube <thomas@roundcube.net> | 2008-06-20 08:47:05 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-06-20 08:47:05 +0000 |
commit | 4e59f63323341b546eaf0dddbb23f38128d7fb14 (patch) | |
tree | 08a3c1db145fe1fc7070b83a7033735e1af2a591 | |
parent | 6ea6c9b96e33f0c6616ff270cc5b81efe216a209 (diff) |
Lock UI when posting rename-folder request
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index e04da5519..abd5ca748 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2761,7 +2761,7 @@ function rcube_webmail() if (this.name_input.__parent) newname = this.name_input.__parent + this.env.delimiter + newname; - this.http_post('rename-folder', '_folder_oldname='+urlencode(this.env.subscriptionrows[this.edit_folder][0])+'&_folder_newname='+urlencode(newname)); + this.http_post('rename-folder', '_folder_oldname='+urlencode(this.env.subscriptionrows[this.edit_folder][0])+'&_folder_newname='+urlencode(newname), true); } } // escape |