diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-20 08:47:05 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-20 08:47:05 +0000 |
| commit | 2e81a5e6e7be614b87098f6c0b254e8b96e49fd7 (patch) | |
| tree | b35d47ef18c6e0bf9710336e8c2890be71fdf899 | |
| parent | 9310d0b52243b263dff6064c0fa274e9f64fc56f (diff) | |
Lock UI when posting rename-folder request
git-svn-id: https://svn.roundcube.net/trunk@1561 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index e04da5519..abd5ca748 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/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 |
