Solved bug 1378. Missing encoding in glossary/print.php

(http://moodle.org/bugs/bug.php?op=show&bugid=1378)
This commit is contained in:
stronk7
2004-05-12 17:59:07 +00:00
parent 3a4b8c823d
commit 2a2525257f
+5 -1
View File
@@ -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 '</table>';
}
echo '<center><font size=-1>' . userdate(time()) . '</font></center>'
echo '<center><font size=-1>' . userdate(time()) . '</font></center>';
echo '</body></html>';
?>