From 77362fa9ce9e3e56c18001d6cbe3ea892c0abf6c Mon Sep 17 00:00:00 2001 From: moodler Date: Sat, 17 Jan 2004 10:18:12 +0000 Subject: [PATCH] A very quick and dirty try .... Williams? What do you think? --- mod/glossary/showentry.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/mod/glossary/showentry.php b/mod/glossary/showentry.php index d1ad230d6c..81b02d5fb4 100644 --- a/mod/glossary/showentry.php +++ b/mod/glossary/showentry.php @@ -9,9 +9,19 @@ if (!empty($courseid)) { require_login($courseid); + $course = get_record("course", "id", $courseid); + + $strglossaries = get_string("modulenameplural", "glossary"); + $strsearch = get_string("search"); + + $CFG->framename = "newwindow"; + print_header(strip_tags("$course->shortname: $glossary->name"), "$course->fullname", + "wwwroot/course/view.php?id=$course->id\">$course->shortname -> $strglossaries -> $strsearch", "", "", true, " ", " "); + + } else { + print_header(); // Needs to be something here to allow linking back to the whole glossary } - print_header(); // Needs to be something here to allow linking back to the whole glossary if ( $eid ) { $entries = get_records_sql("select e.* from {$CFG->prefix}glossary_entries e, {$CFG->prefix}glossary g". -- 2.39.5