firefox complains about invalid email in an email field

This commit is contained in:
Shish 2017-10-28 20:28:23 +01:00
parent 4dead6837f
commit cf95e28144

View File

@ -36,7 +36,7 @@ class UserPageTheme extends Themelet {
$html .= "<tr>" . make_form("user_admin/list", "GET");
$html .= "<td><input type='text' name='username' value='$h_username'/></td>";
if($user->can('delete_user'))
$html .= "<td><input type='email' name='email' value='$h_email'/></td>";
$html .= "<td><input type='email' name='text' value='$h_email'/></td>";
$html .= "<td><input type='text' name='class' value='$h_class'/></td>";
$html .= "<td><input type='submit' value='Search'/></td>";
$html .= "</form></tr>";