-
Bug
-
Resolution: Fixed
-
Minor
-
3.3.5, 3.4.2, 3.5.2, 3.6
-
MOODLE_33_STABLE, MOODLE_34_STABLE, MOODLE_35_STABLE, MOODLE_36_STABLE
-
MOODLE_33_STABLE, MOODLE_34_STABLE, MOODLE_35_STABLE
-
MDL-61908-master -
-
GDPR Followup Sprint 1
Multiple pages in the Data privacy (tool_dataprivacy) plugin have the same heading displayed twice.
This is because these page set the same text by both $PAGE->set_heading() and echo $OUTPUT->heading($title);. It is common that pages like this should use
$PAGE->set_heading($SITE->fullname);
|
instead.