diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-07-19 19:26:55 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-07-19 19:26:55 +0000 |
| commit | f2b98570859fa83487123ceaf89fa050c5621f2b (patch) | |
| tree | 6bf18544277c77f9e682fe45160f03fa100bdb12 /roundcubemail/program/steps | |
| parent | 532b7cee175d0ff4b28f82962658181e6b00d38b (diff) | |
Add drop-target for root folder; fix row insertion when moving to a protected folder
git-svn-id: https://svn.roundcube.net/trunk@4938 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
| -rw-r--r-- | roundcubemail/program/steps/settings/folders.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roundcubemail/program/steps/settings/folders.inc b/roundcubemail/program/steps/settings/folders.inc index cc149bc79..982b21a12 100644 --- a/roundcubemail/program/steps/settings/folders.inc +++ b/roundcubemail/program/steps/settings/folders.inc @@ -251,6 +251,13 @@ function rcube_subscription_form($attrib) unset($seen); + // add drop-target representing 'root' + $table->add_row(array('id' => 'mailboxroot', 'class' => 'virtual root')); + $table->add('name', ' '); + $table->add(null, ' '); + + $a_js_folders['mailboxroot'] = array('.', '', true); + $checkbox_subscribe = new html_checkbox(array( 'name' => '_subscribed[]', 'title' => rcube_label('changesubscription'), |
