From 6041fabbc31db0eb7d93b4d00f475eb575ee34f1 Mon Sep 17 00:00:00 2001 From: Alexander Bias Date: Thu, 22 Aug 2024 11:52:27 +0200 Subject: [PATCH] Remove duplicate header on overview page. --- CHANGES.md | 4 ++++ cohorts.php | 1 - index.php | 1 - 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index eba1265..34de9f9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-local_profilecohort Changes ------- +### Unreleased + +* 2024-08-20 - Remove duplicate header on overview page. + ### v4.2-r2 * 2024-08-11 - Add section for scheduled tasks to README diff --git a/cohorts.php b/cohorts.php index 9583eca..5b060b9 100644 --- a/cohorts.php +++ b/cohorts.php @@ -40,6 +40,5 @@ $manager->process_cohort_form(); echo $OUTPUT->header(); -echo $OUTPUT->heading($title); echo $manager->output_cohort_form(); echo $OUTPUT->footer(); diff --git a/index.php b/index.php index 5a434e4..d22027b 100644 --- a/index.php +++ b/index.php @@ -39,6 +39,5 @@ $manager->process_form(); echo $OUTPUT->header(); -echo $OUTPUT->heading($title); echo $manager->output_form(); echo $OUTPUT->footer();