From 62067fe3aea2a2fa8d754c166d3e4337810210be Mon Sep 17 00:00:00 2001 From: stronk7 Date: Tue, 16 Nov 2004 23:12:21 +0000 Subject: [PATCH] Header is out and "Site:" is in. Partially solved Bug 1837 (http://moodle.org/bugs/bug.php?op=show&bugid=1837) Merged from MOODLE_14_STABLE --- 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 413ed2e8745..41824631ca1 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 ) {