diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-19 14:18:44 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-19 14:18:44 +0000 |
| commit | a2f483a3cc23b53e33fbc823e089348777f204da (patch) | |
| tree | 6e278bca7f70ec6925400908cda683ad3a1f46f7 /roundcubemail/program | |
| parent | df5238d7a47ae5988ab00575a619700687429eb1 (diff) | |
- hide threads related stuff if threads are not supported
git-svn-id: https://svn.roundcube.net/trunk@3387 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/steps/settings/manage_folders.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/settings/manage_folders.inc b/roundcubemail/program/steps/settings/manage_folders.inc index fa5a4db70..9202777f7 100644 --- a/roundcubemail/program/steps/settings/manage_folders.inc +++ b/roundcubemail/program/steps/settings/manage_folders.inc @@ -294,7 +294,7 @@ function rcube_subscription_form($attrib) $table->add('msgcount', ($folder['virtual'] ? '' : $IMAP->messagecount($folder['id']))); // XXX: Use THREADS or ALL? $table->add('subscribed', ($protected || $folder['virtual']) ? ($subscribed ? ' •' : ' ') : $checkbox_subscribe->show(($subscribed ? $folder_utf8 : ''), array('value' => $folder_utf8))); - if ($IMAP->get_capability('thread=references')) { + if ($threading_supported) { $table->add('threaded', $checkbox_threaded->show(($threaded ? $folder_utf8 : ''), array('value' => $folder_utf8))); } |
