From 7ba2b3a7f4b3decaec4267061f44776ae57a67ae Mon Sep 17 00:00:00 2001 From: stronk7 Date: Tue, 16 Nov 2004 23:09:23 +0000 Subject: [PATCH] Header is out and "Site:" is in. Partially solved Bug 1837 (http://moodle.org/bugs/bug.php?op=show&bugid=1837) --- mod/glossary/print.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/glossary/print.php b/mod/glossary/print.php index b9e4c01468d..9334c9f0cba 100644 --- a/mod/glossary/print.php +++ b/mod/glossary/print.php @@ -33,7 +33,7 @@ $entriesbypage = $CFG->glossary_entbypage; } - print_header_simple(strip_tags("$glossary->name")); + print_header(); if ($CFG->forcelogin) { require_login(); @@ -144,7 +144,7 @@ $site = get_record("course","id",1); echo '

' . userdate(time()) . '

'; - echo '' . $site->fullname . '
'; + echo get_string("site") . ': ' . $site->fullname . '
'; echo get_string("course") . ': ' . $course->fullname . ' ('. $course->shortname . ')
'; echo get_string("modulename","glossary") . ': ' . $glossary->name . '

'; if ( $allentries ) {