From 1f1cae831152c9dc1d442844f1c03c2676382eb3 Mon Sep 17 00:00:00 2001 From: Eloy Lafuente Date: Thu, 26 Nov 2009 11:35:25 +0000 Subject: [PATCH] MDL-20982 glossary - make print view to respect current theme ; merged from 19_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 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(); -- 2.39.5