From: stronk7 Date: Tue, 16 Nov 2004 23:12:21 +0000 (+0000) Subject: Header is out and "Site:" is in. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=62067fe3aea2a2fa8d754c166d3e4337810210be;p=moodle.git 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 --- diff --git a/mod/glossary/print.php b/mod/glossary/print.php index 413ed2e874..41824631ca 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 ) {