From 4dd37612deab19ee6cc21a2ec486ed1f4df74943 Mon Sep 17 00:00:00 2001 From: kest874 <ken.stoner@nasg.net> Date: Tue, 12 Jan 2016 10:58:01 -0600 Subject: [PATCH] Fix for issue 2672 https://github.com/osTicket/osTicket-1.8/issues/2672 --- include/staff/staff.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/staff/staff.inc.php b/include/staff/staff.inc.php index 7c8c18c9c..384e59d07 100644 --- a/include/staff/staff.inc.php +++ b/include/staff/staff.inc.php @@ -65,10 +65,10 @@ else { <tr> <td class="required"><?php echo __('Name'); ?>:</td> <td> - <input type="text" size="20" maxlength="64" style="width: 145px" name="firstname" + <input type="text" size="20" maxlength="64" style="width: 145px" name="firstname" class="auto first" autofocus value="<?php echo Format::htmlchars($staff->firstname); ?>" placeholder="<?php echo __("First Name"); ?>" /> - <input type="text" size="20" maxlength="64" style="width: 145px" name="lastname" + <input type="text" size="20" maxlength="64" style="width: 145px" name="lastname" class="auto last" value="<?php echo Format::htmlchars($staff->lastname); ?>" placeholder="<?php echo __("Last Name"); ?>" /> <div class="error"><?php echo $errors['firstname']; ?></div> @@ -78,7 +78,7 @@ else { <tr> <td class="required"><?php echo __('Email Address'); ?>:</td> <td> - <input type="email" size="40" maxlength="64" style="width: 300px" name="email" + <input type="email" size="40" maxlength="64" style="width: 300px" name="email" class="auto email" value="<?php echo Format::htmlchars($staff->email); ?>" placeholder="<?php echo __('e.g. me@mycompany.com'); ?>" /> <div class="error"><?php echo $errors['email']; ?></div> -- GitLab