diff --git a/calendar/classes/export_form.php b/calendar/classes/export_form.php index 18e637bec8d..9ca1d89569c 100644 --- a/calendar/classes/export_form.php +++ b/calendar/classes/export_form.php @@ -42,10 +42,9 @@ class core_calendar_export_form extends moodleform { * @throws coding_exception */ public function definition() { - global $CFG, $OUTPUT; + global $CFG; $mform = $this->_form; - - $mform->addElement('html', $OUTPUT->doc_link('calendar/export', get_string('exporthelp', 'calendar'), true)); + $mform->addElement('html', '
The calendar URL provides a dynamic link for importing events into other calendars. Any new, changed or deleted events in the source calendar will be reflected in the other calendars.
+The calendar export allows you to create a backup copy of events, which may be imported into other calendars. Updates made in the source calendar will not be reflected in the other calendars.
'; $string['exportbutton'] = 'Export'; $string['exportcalendar'] = 'Export calendar'; $string['forcecalendartype'] = 'Force calendar';