Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a typo in quiz_category_object->output_edit_single_table()
Merged from MOODLE_15_STABLE
  • Loading branch information
patrickslee committed Dec 6, 2005
1 parent dfafac3 commit a935cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/quiz/category.php
Expand Up @@ -456,7 +456,7 @@ function output_edit_single_table($category) {
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>';
}
Expand Down

0 comments on commit a935cf4

Please sign in to comment.