mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
MDL-19813 Migrated calls to print_heading
This commit is contained in:
parent
f43f1834d3
commit
90cd54cb2a
11 changed files with 47 additions and 46 deletions
|
@ -103,13 +103,13 @@
|
|||
include('tabs.php');
|
||||
|
||||
/// Heading and tab bar.
|
||||
print_heading(get_string('previewquiz', 'quiz', format_string($quiz->name)));
|
||||
echo $OUTPUT->heading(get_string('previewquiz', 'quiz', format_string($quiz->name)));
|
||||
$attemptobj->print_restart_preview_button();
|
||||
|
||||
/// Inform teachers of any restrictions that would apply to students at this point.
|
||||
if ($messages) {
|
||||
print_box_start('quizaccessnotices');
|
||||
print_heading(get_string('accessnoticesheader', 'quiz'), '', 3);
|
||||
echo $OUTPUT->heading(get_string('accessnoticesheader', 'quiz'), 3);
|
||||
$accessmanager->print_messages($messages);
|
||||
print_box_end();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue