$options->newlines = false;
$options->overflowdiv = !$ajax;
- echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 1, 'helpheading');
+ if ($ajax) {
+ // When using AJAX, the header should be H2 as it is in the same DOM as the calling page.
+ echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 2, 'helpheading');
+ } else {
+ // When not using AJAX, the header should be H1 as it is in it's own window.
+ echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 1, 'helpheading');
+ }
// Should be simple wiki only MDL-21695
echo format_text(get_string($identifier.'_help', $component), FORMAT_MARKDOWN, $options);