From 0a8ddd6c1d9e827496b2b2d6ef466ebe55fe7183 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 22 Nov 2012 11:15:58 +0100 Subject: sqlbox/index.php: Fix incorrect links to view.php --- sqlbox/index.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sqlbox') diff --git a/sqlbox/index.php b/sqlbox/index.php index b0942e0..591e3fe 100644 --- a/sqlbox/index.php +++ b/sqlbox/index.php @@ -45,6 +45,7 @@ $PAGE->set_title(format_string($course->fullname)); $PAGE->set_heading(format_string($course->fullname)); $PAGE->set_context($coursecontext); + echo $OUTPUT->header(); if (! $sqlboxs = get_all_instances_in_course('sqlbox', $course)) { @@ -66,12 +67,12 @@ if ($course->format == 'weeks') { foreach ($sqlboxs as $sqlbox) { if (!$sqlbox->visible) { $link = html_writer::link( - new moodle_url('/mod/sqlbox.php', array('id' => $sqlbox->coursemodule)), + new moodle_url('/mod/sqlbox/view.php', array('id' => $sqlbox->coursemodule)), format_string($sqlbox->name, true), array('class' => 'dimmed')); } else { $link = html_writer::link( - new moodle_url('/mod/sqlbox.php', array('id' => $sqlbox->coursemodule)), + new moodle_url('/mod/sqlbox/view.php', array('id' => $sqlbox->coursemodule)), format_string($sqlbox->name, true)); } -- cgit