diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-12 15:29:40 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-12 15:29:40 +0100 |
commit | a329ccd9c9b9cff9f70a35606dcb654d965538f1 (patch) | |
tree | 100c43820ef7cd9044642d13b39ff5a53be7c039 /plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php | |
parent | a23a2b3039800b5d4e71514aebe835afaf26bd81 (diff) |
Fix issue where folder selector wasn't visible on new filter form
Diffstat (limited to 'plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php')
-rw-r--r-- | plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php b/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php index 4a375d353..22268942c 100644 --- a/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php +++ b/plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php @@ -1788,7 +1788,7 @@ class rcube_sieve_engine 'maxlength' => 100, 'id' => 'action_mailbox' . $id, 'name' => "_action_mailbox[$id]", - 'style' => 'display:'.(!isset($action) || $action['type']=='fileinto' ? 'inline' : 'none') + 'style' => 'display:'.(empty($action['type']) || $action['type'] == 'fileinto' ? 'inline' : 'none') )); $out .= $select->show($mailbox); $out .= '</td>'; |