summaryrefslogtreecommitdiff
path: root/program/steps/settings/folders.inc
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-07-10 08:03:44 +0200
committerAleksander Machniak <alec@alec.pl>2013-07-10 08:03:44 +0200
commit6dd22a5e2032447bb4a930689539d4ec121ec0f2 (patch)
tree5e2583615010d1f861dbeb4021109e98c9cd4853 /program/steps/settings/folders.inc
parent73ad4f1bfdf104055104907c11f97315d6fb2ebe (diff)
Fix parse error from last commit
Diffstat (limited to 'program/steps/settings/folders.inc')
-rw-r--r--program/steps/settings/folders.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/program/steps/settings/folders.inc b/program/steps/settings/folders.inc
index e2a3f8aaf..6d116e7d2 100644
--- a/program/steps/settings/folders.inc
+++ b/program/steps/settings/folders.inc
@@ -293,9 +293,8 @@ function rcube_subscription_form($attrib)
// Check \Noselect flag (of existing folder)
if (!$protected && in_array($folder['id'], $a_unsubscribed)) {
- $attrs = $STORAGE->folder_attributes($folder['id']);
- $noselect = in_array('\\Noselect', $attrs);
- }
+ $attrs = $STORAGE->folder_attributes($folder['id']);
+ $noselect = in_array('\\Noselect', $attrs);
}
$disabled = (($protected && $subscribed) || $noselect);