
Oma Cox - 2016-06-19 23:59:41
# Verify last name --
if( isset( $data['last_name'] ) ) {
if(!preg_match($this->string_exp, $data['first_name'])) {
$i++;
$this->error_message .= $i.'.) The Last Name you have entered does not appear to be valid.<br />';
}
}
if(!preg_match($this->string_exp, $data['first_name'])) { should be
if(!preg_match($this->string_exp, $data['last_name''])) {