Fixed a typo in quiz_category_object->output_edit_single_table()

Merged from MOODLE_15_STABLE
This commit is contained in:
patrickslee
2005-12-06 21:01:54 +00:00
parent dfafac3fb2
commit a935cf4cdf
+1 -1
View File
@@ -456,7 +456,7 @@ class quiz_category_object {
echo '<p><form action="category.php" method="post">';
echo "<input type=\"hidden\" name=\"sesskey\" value=\"$USER->sesskey\" />";
echo '<input type="hidden" name="id" value="'. $this->course->id . '" />';
echo '<input type="hidden" name="updateid" value=' . $category->id . '" />';
echo '<input type="hidden" name="updateid" value="' . $category->id . '" />';
print_table($edittable);
echo '</form></p>';
}