summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/settings
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-19 14:18:44 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-19 14:18:44 +0000
commita2f483a3cc23b53e33fbc823e089348777f204da (patch)
tree6e278bca7f70ec6925400908cda683ad3a1f46f7 /roundcubemail/program/steps/settings
parentdf5238d7a47ae5988ab00575a619700687429eb1 (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/steps/settings')
-rw-r--r--roundcubemail/program/steps/settings/manage_folders.inc2
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 ? '&nbsp;&#x2022;' : '&nbsp;') :
$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)));
}