]> git.mjollnir.org Git - moodle.git/commitdiff
replacing fieldsets with divs in small forms
authortoyomoyo <toyomoyo>
Thu, 1 Mar 2007 07:28:11 +0000 (07:28 +0000)
committertoyomoyo <toyomoyo>
Thu, 1 Mar 2007 07:28:11 +0000 (07:28 +0000)
mod/assignment/lib.php

index a2d82cf836d99e275f48618a5b4a7fef35a8b768..6511206d267e0606ac296172d374dc82892f01c5 100644 (file)
@@ -1174,11 +1174,11 @@ class assignment_base {
         /// Print quickgrade form around the table
         if ($quickgrade){
             echo '<form action="submissions.php" id="fastg" method="post">';
-            echo '<fieldset class="invisiblefieldset">';
+            echo '<div>';
             echo '<input type="hidden" name="id" value="'.$this->cm->id.'" />';
             echo '<input type="hidden" name="mode" value="fastgrade" />';
             echo '<input type="hidden" name="page" value="'.$page.'" />';
-            echo '</fieldset>';
+            echo '</div>';
             echo '<div style="text-align:center"><input type="submit" name="fastg" value="'.get_string('saveallfeedback', 'assignment').'" /></div>';
         }