From aaf1113a340ee3478bd06b578d12007d67880096 Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Mon, 16 Dec 2013 14:54:21 -0600 Subject: [PATCH] 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. --- include/staff/ticket-open.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/staff/ticket-open.inc.php b/include/staff/ticket-open.inc.php index 8d5ce5b55..489d45ed4 100644 --- a/include/staff/ticket-open.inc.php +++ b/include/staff/ticket-open.inc.php @@ -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> -- GitLab