Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.3.5, 3.4.2, 3.5.2, 3.6
-
Labels:
-
Testing Instructions:
-
Affected Branches:MOODLE_33_STABLE, MOODLE_34_STABLE, MOODLE_35_STABLE, MOODLE_36_STABLE
-
Fixed Branches:MOODLE_33_STABLE, MOODLE_34_STABLE, MOODLE_35_STABLE
-
Epic Link:
-
Pull from Repository:
-
Pull 3.5 Branch:
MDL-61908-35 -
Pull 3.5 Diff URL:
-
Pull Master Branch:
MDL-61908-master -
Pull Master Diff URL:
-
Sprint:GDPR Followup Sprint 1
Description
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.