MDL-47186 calendar: Changed month name to h2 from h1

This commit is contained in:
Brian Barnes
2014-09-15 14:20:59 +08:00
committed by Damyon Wiese
parent f2211e7c9a
commit e7da6db9ca
+3 -2
View File
@@ -795,7 +795,7 @@ function calendar_get_events_by_id($eventids) {
* @return string $content return available control for the calender in html
*/
function calendar_top_controls($type, $data) {
global $PAGE;
global $PAGE, $OUTPUT;
// Get the calendar type we are using.
$calendartype = \core_calendar\type_factory::get_calendar_instance();
@@ -923,7 +923,8 @@ function calendar_top_controls($type, $data) {
}
$content .= html_writer::start_tag('div', array('class'=>'calendar-controls'));
$content .= $left . '<span class="hide"> | </span><h1 class="current">'.userdate($time, get_string('strftimemonthyear'))."</h1>";
$content .= $left . '<span class="hide"> | </span>';
$content .= $OUTPUT->heading(userdate($time, get_string('strftimemonthyear')), 2, 'current');
$content .= '<span class="hide"> | </span>' . $right;
$content .= '<span class="clearer"><!-- --></span>';
$content .= html_writer::end_tag('div')."\n";