From a1b5dd2bd97c697bd2e57db597b41bc82bb9cf14 Mon Sep 17 00:00:00 2001 From: toyomoyo <toyomoyo> Date: Thu, 1 Mar 2007 07:28:11 +0000 Subject: [PATCH] replacing fieldsets with divs in small forms --- mod/assignment/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/assignment/lib.php b/mod/assignment/lib.php index a2d82cf836..6511206d26 100644 --- a/mod/assignment/lib.php +++ b/mod/assignment/lib.php @@ -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>'; } -- 2.39.5