diff options
Diffstat (limited to 'plugins/kolab_activesync/kolab_activesync_ui.php')
-rw-r--r-- | plugins/kolab_activesync/kolab_activesync_ui.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/kolab_activesync/kolab_activesync_ui.php b/plugins/kolab_activesync/kolab_activesync_ui.php index 6e796cc..b723668 100644 --- a/plugins/kolab_activesync/kolab_activesync_ui.php +++ b/plugins/kolab_activesync/kolab_activesync_ui.php @@ -179,6 +179,7 @@ class kolab_activesync_ui } } + $folder_id = 'rcmf' . html_identifier($folder); $names[] = $origname; $classes = array('mailbox'); @@ -187,9 +188,6 @@ class kolab_activesync_ui $classes[] = $folder_class; } - $folder_id = 'rcmf' . html_identifier($folder); - $padding = str_repeat(' ', $level); - $table->add_row(); $table->add('subscription', $checkbox_sync->show( !empty($subscribed[$folder]) ? $folder : null, @@ -201,7 +199,7 @@ class kolab_activesync_ui array('value' => $folder, 'id' => $folder_id.'_alarm'))); } - $table->add(join(' ', $classes), html::label($folder_id, $padding . $foldername)); + $table->add(join(' ', $classes), html::label($folder_id, $foldername)); } return $table->show(); |