From 3c0e93f6aa018cd60057eb0fb7a5212f202aafd4 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 10 May 2016 11:57:41 +0200 Subject: [PATCH] Fix invalid 'for' attribute in events export form --- plugins/calendar/lib/calendar_ui.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/calendar/lib/calendar_ui.php b/plugins/calendar/lib/calendar_ui.php index 557d9dae..2f2c6b65 100644 --- a/plugins/calendar/lib/calendar_ui.php +++ b/plugins/calendar/lib/calendar_ui.php @@ -585,7 +585,7 @@ class calendar_ui $checkbox = new html_checkbox(array('name' => 'attachments', 'id' => 'event-export-attachments', 'value' => 1)); $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) );