]> git.mjollnir.org Git - moodle.git/commitdiff
glossary print view is now valid XHTML.
authorstronk7 <stronk7>
Sun, 7 May 2006 10:49:28 +0000 (10:49 +0000)
committerstronk7 <stronk7>
Sun, 7 May 2006 10:49:28 +0000 (10:49 +0000)
Merged from MOODLE_16_STABLE

mod/glossary/print.php

index b4e4b32c8ac57f36473646c6fe93d50cef0f24b8..0879237d4cbd46aae0d3559735a95c3076808c24 100644 (file)
     echo '<p align="right"><font size="-1">' . userdate(time()) . '</font></p>';
     echo get_string("site") . ': <strong>' . $site->fullname . '</strong><br />';
     echo get_string("course") . ': <strong>' . $course->fullname . ' ('. $course->shortname . ')</strong><br />';
-    echo get_string("modulename","glossary") . ': <strong>' . format_string($glossary->name, true) . '</strong><p>';
+    echo get_string("modulename","glossary") . ': <strong>' . format_string($glossary->name, true) . '</strong>';
     if ( $allentries ) {
         foreach ($allentries as $entry) {
 
                         $pivottoshow = fullname($user, isteacher($course->id));
                     }
 
-                    echo "<p align=\"center\"><strong><i>".clean_text($pivottoshow)."</i></strong></p>" ;
+                    echo "<p align=\"center\"><strong>".clean_text($pivottoshow)."</strong></p>" ;
                 }
             }
 
         }
     }
 
-    echo '</body></html>';
+    echo '</div></div></body></html>';
 ?>