]> git.mjollnir.org Git - moodle.git/commitdiff
Found it!!!!
authorstronk7 <stronk7>
Fri, 27 Aug 2004 00:52:08 +0000 (00:52 +0000)
committerstronk7 <stronk7>
Fri, 27 Aug 2004 00:52:08 +0000 (00:52 +0000)
A missing </select> was the cause to the wrong display under Safari!!!

Merged from MOODLE_14_STABLE

mod/glossary/edit.html

index 90ebba9c5ffe6c07125e20c541100fdbe0f448b8..64ac9e133e48439e1d947a0d59962c1892de8afe 100644 (file)
@@ -25,7 +25,7 @@ if (isset($errors)) {
     <?php
         $categories = get_records("glossary_categories","glossaryid",$glossary->id,'name ASC');
         echo "<select size=\"5\" name=\"categories[]\" multiple=\"yes\">";
-        echo "<option value=\"0\">" . get_string("notcategorised","glossary") . "</optioon>";
+        echo "<option value=\"0\">" . get_string("notcategorised","glossary") . "</option>";
 
         if ( $categories ) {
             foreach ( $categories as $category ) {
@@ -38,6 +38,7 @@ if (isset($errors)) {
                 echo "value=\"$category->id\">$category->name</option>\n";
             }
         }
+        echo "</select>\n";
     ?>
           </td>
         </tr>