From: Eloy Lafuente Date: Thu, 26 Nov 2009 11:35:25 +0000 (+0000) Subject: MDL-20982 glossary - make print view to respect current theme ; merged from 19_STABLE X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=1f1cae831152c9dc1d442844f1c03c2676382eb3;p=moodle.git MDL-20982 glossary - make print view to respect current theme ; merged from 19_STABLE --- diff --git a/mod/glossary/print.php b/mod/glossary/print.php index c6c2e4e97f..d31a5781f5 100644 --- a/mod/glossary/print.php +++ b/mod/glossary/print.php @@ -51,11 +51,11 @@ if ( !$entriesbypage = $glossary->entbypage ) { $entriesbypage = $CFG->glossary_entbypage; } -echo $OUTPUT->header(); - require_course_login($course, true, $cm); $context = get_context_instance(CONTEXT_MODULE, $cm->id); +echo $OUTPUT->header(); + /// Loading the textlib singleton instance. We are going to need it. $textlib = textlib_get_instance();