From fdc48c0edd07777cb67c118e7374ce6b86c19604 Mon Sep 17 00:00:00 2001 From: Sara Arjona Date: Fri, 5 Jan 2024 13:05:47 +0100 Subject: [PATCH] MDL-80540 section_links: Fix link to current section/week After the changes done in MDL-79986, the "Jump to current topic/week" link in the Sections links block stopped working. This patch fixes it and uses the new section.php page. --- blocks/section_links/renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks/section_links/renderer.php b/blocks/section_links/renderer.php index ac47accb753..632a37a2ccb 100644 --- a/blocks/section_links/renderer.php +++ b/blocks/section_links/renderer.php @@ -77,7 +77,7 @@ class block_section_links_renderer extends plugin_renderer_base { if (!$sections[$jumptosection]->visible) { $attributes['class'] = 'dimmed'; } - $html .= html_writer::link(course_get_url($course, $jumptosection), $linktext, $attributes); + $html .= html_writer::link(course_get_url($course, $jumptosection, ['navigation' => true]), $linktext, $attributes); } return $html;