Strange...but the only email validation related code in
page_apply.php is
if ($apply_email == '')
{
$errors['apply_email'] = $translations['apply']['email_error'];
}
which was removed. Also for the field itself checked and did the following in
job-details.tpl
<input {if $smarty.session.apply_errors.apply_email}class="error"{/if} type="text" name="apply_email" id="apply_email" maxlength="50" size="30" value="{$smarty.session.apply_fields.apply_email}" />
<span class="validation-error">{if $smarty.session.apply_errors.apply_email}<img src="{$BASE_URL}img/icon-delete.png" alt="" />{/if}</span> <span> {$translations.email.bcc} </span>
removed....
{if $smarty.session.apply_errors.apply_email}class="error"{/if}
and
<span class="validation-error">{if $smarty.session.apply_errors.apply_email}<img src="{$BASE_URL}img/icon-delete.png" alt="" />{/if}</span>
and replaced
value="{$smarty.session.apply_fields.apply_email}"
with
value="TESTING"
This pretty straight forward because I've done it with other programs...I'm probably just screwing up something simple.
---------------
Tokyoj
"You can't build a reputation on what you're going to do." (Henry Ford)
"Insanity is doing the same thing over and over, expecting different results." (Albert Einstein)