replacing fieldsets with divs in small forms

This commit is contained in:
toyomoyo 2007-03-01 07:28:11 +00:00
parent 927a78087c
commit a1b5dd2bd9

View 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>';
}