diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-08-02 09:05:34 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-08-02 09:05:34 +0000 |
| commit | c172787a76d07672e450cf8f06e2d63deafc28d0 (patch) | |
| tree | ebe4196a8eef5492b86764facb601913bae2ae4f /roundcubemail/program/steps/settings | |
| parent | 8a09b4dabb8da4ca465472f96db4281484db4635 (diff) | |
- Don't add threads checkbox in virtual folder record
git-svn-id: https://svn.roundcube.net/trunk@3853 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/settings')
| -rw-r--r-- | roundcubemail/program/steps/settings/manage_folders.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/settings/manage_folders.inc b/roundcubemail/program/steps/settings/manage_folders.inc index a8a4083a7..f19d855ac 100644 --- a/roundcubemail/program/steps/settings/manage_folders.inc +++ b/roundcubemail/program/steps/settings/manage_folders.inc @@ -295,8 +295,8 @@ function rcube_subscription_form($attrib) $table->add('subscribed', ($protected || $folder['virtual']) ? ($subscribed ? ' •' : ' ') : $checkbox_subscribe->show(($subscribed ? $folder_utf8 : ''), array('value' => $folder_utf8))); if ($threading_supported) { - $table->add('threaded', - $checkbox_threaded->show(($threaded ? $folder_utf8 : ''), array('value' => $folder_utf8))); + $table->add('threaded', $folder['virtual'] ? '' : + $checkbox_threaded->show(($threaded ? $folder_utf8 : ''), array('value' => $folder_utf8))); } // add rename and delete buttons |
