]> git.mjollnir.org Git - moodle.git/commitdiff
Fix visualization under FF. MDL-14039 ; merged from 19_STABLE
authorstronk7 <stronk7>
Mon, 24 Mar 2008 23:06:08 +0000 (23:06 +0000)
committerstronk7 <stronk7>
Mon, 24 Mar 2008 23:06:08 +0000 (23:06 +0000)
user/addnote.php

index 23e74015ebb408fca9b751dc908287e7dc1b3ae5..fbf6861231f518f6e841772cc6f810ba0237e118 100644 (file)
@@ -56,6 +56,7 @@ echo '<form method="post" action="addnote.php">';
 echo '<fieldset class="invisiblefieldset">';
 echo '<input type="hidden" name="id" value="'.$course->id.'" />';
 echo '<input type="hidden" name="sesskey" value="'.$USER->sesskey.'" />';
+echo '</fieldset>';
 $table->head  = array (get_string('fullname'),
     get_string('content', 'notes') . helpbutton('writing', get_string('helpwriting'), 'moodle', true, false, '', true),
     get_string('publishstate', 'notes') . helpbutton('status', get_string('publishstate', 'notes'), 'notes', true, false, '', true),
@@ -84,6 +85,6 @@ foreach ($users as $k => $v) {
     );
 }
 print_table($table);
-echo '<div style="width:100%;text-align:center;"><input type="submit" value="' . get_string('savechanges'). '" /></div></fieldset></form>';
+echo '<div style="width:100%;text-align:center;"><input type="submit" value="' . get_string('savechanges'). '" /></div></form>';
 print_footer($course);
 ?>