Fix invalid 'for' attribute in events export form

This commit is contained in:
Aleksander Machniak 2016-05-10 11:57:41 +02:00
parent bb1dfa9c10
commit 3c0e93f6aa

View file

@ -585,7 +585,7 @@ class calendar_ui
$checkbox = new html_checkbox(array('name' => 'attachments', 'id' => 'event-export-attachments', 'value' => 1)); $checkbox = new html_checkbox(array('name' => 'attachments', 'id' => 'event-export-attachments', 'value' => 1));
$html .= html::div('form-section', $html .= html::div('form-section',
html::label('event-export-range', $this->cal->gettext('exportattachments')) . html::label('event-export-attachments', $this->cal->gettext('exportattachments')) .
$checkbox->show(1) $checkbox->show(1)
); );