From: stronk7 Date: Wed, 12 May 2004 17:59:07 +0000 (+0000) Subject: Solved bug 1378. Missing encoding in glossary/print.php X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=2a2525257f8de2138712afd35653ebbbab375b72;p=moodle.git Solved bug 1378. Missing encoding in glossary/print.php (http://moodle.org/bugs/bug.php?op=show&bugid=1378) --- diff --git a/mod/glossary/print.php b/mod/glossary/print.php index fa8fe7082a..e2eb823ce5 100644 --- a/mod/glossary/print.php +++ b/mod/glossary/print.php @@ -10,6 +10,8 @@ optional_variable($sortorder,"asc"); // Sorting order optional_variable($offset); // number of entries to bypass + print_header(); + if (! $cm = get_record("course_modules", "id", $id)) { error("Course Module ID was incorrect"); } @@ -214,5 +216,7 @@ if ($tableisopen) { echo ''; } - echo '
' . userdate(time()) . '
' + echo '
' . userdate(time()) . '
'; + + echo ''; ?>