From fbaea8f354bdbb5ce03bf228344708fd4e3b5203 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sun, 7 May 2006 10:49:28 +0000 Subject: [PATCH] glossary print view is now valid XHTML. Merged from MOODLE_16_STABLE --- mod/glossary/print.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/glossary/print.php b/mod/glossary/print.php index b4e4b32c8a..0879237d4c 100644 --- a/mod/glossary/print.php +++ b/mod/glossary/print.php @@ -146,7 +146,7 @@ echo '

' . userdate(time()) . '

'; echo get_string("site") . ': ' . $site->fullname . '
'; echo get_string("course") . ': ' . $course->fullname . ' ('. $course->shortname . ')
'; - echo get_string("modulename","glossary") . ': ' . format_string($glossary->name, true) . '

'; + echo get_string("modulename","glossary") . ': ' . format_string($glossary->name, true) . ''; if ( $allentries ) { foreach ($allentries as $entry) { @@ -172,7 +172,7 @@ $pivottoshow = fullname($user, isteacher($course->id)); } - echo "

".clean_text($pivottoshow)."

" ; + echo "

".clean_text($pivottoshow)."

" ; } } @@ -180,5 +180,5 @@ } } - echo ''; + echo ''; ?> -- 2.39.5