Skip to content
Snippets Groups Projects
Commit aaf1113a authored by Jared Hancock's avatar Jared Hancock
Browse files

ui: Drop autocorrect on open ticket email box

This box shows if the ticket open page is shown without selecting a new user
account. Autocorrect should be disabled on that box too.
parent 866d8e2e
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,8 @@ $info=Format::htmlchars(($errors && $_POST)?$_POST:$info);
<td width="160" class="required"> Email Address: </td>
<td>
<span style="display:inline-block;">
<input type="text" size=45 name="email" id="user-email" value="<?php echo $info['email']; ?>" /> </span>
<input type="text" size=45 name="email" id="user-email"
autocomplete="off" autocorrect="off" value="<?php echo $info['email']; ?>" /> </span>
<font class="error">* <?php echo $errors['email']; ?></font>
</td>
</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment