minor xhtml fix

This commit is contained in:
skodak 2006-11-30 09:32:46 +00:00
parent 4eb777c2b7
commit 7203167d35
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ if (!is_null($path)) {
}
// Print the form for adjusting options.
print_simple_box_start('center', '70%');
echo '<form method="GET" action="index.php">';
echo '<form method="get" action="index.php">';
print_heading($formheader);
echo '<p>'; print_checkbox('showpasses', 1, $showpasses, get_string('showpasses', $langfile)); echo '</p>';
echo '<p>'; print_checkbox('showsearch', 1, $showsearch, get_string('showsearch', $langfile)); echo '</p>';

View File

@ -2441,7 +2441,7 @@ class admin_setting_special_coursemanager extends admin_setting {
} else {
$return .= '<br />';
}
$return .= '<input type="checkbox" name="s_'.$this->name.'['.$roleid.']" value="1" '.$checked.'>&nbsp;'.$role->name;
$return .= '<input type="checkbox" name="s_'.$this->name.'['.$roleid.']" value="1" '.$checked.' />&nbsp;'.$role->name;
}
$return .= '</div>';
}