Open to all! Ask other shopowners for help.
-
Omar_one
- Senior Contributor
- Posts: 677
- Joined: Fri Oct 25, 2019 5:06 pm
- Phoenix Version: v1.0.8.16
- Has thanked: 100 times
- Been thanked: 56 times
Post
by Omar_one »
Hello,
is there any replacement function for tep_validate_email()
I am trying to update old addon have this function
Code: Select all
$validEmail = tep_validate_email($order->customer['email_address']);
if (!$validEmail) {
$order->customer['email_address'] = '';
Omar
-
bonbec
- Contributor
- Posts: 190
- Joined: Mon Oct 26, 2020 12:23 pm
- Phoenix Version: V1.1.0.7
- Has thanked: 54 times
- Been thanked: 40 times
Post
by bonbec »
Hello Omar,
filter_var($email_address, FILTER_VALIDATE_EMAIL)
found in the
Phoenix_change_log from (line 177)
Old MS2.2 PHP7.4 site being converted to CE Phoenix v1.1.0.6 PHP 8.3
-
Omar_one
- Senior Contributor
- Posts: 677
- Joined: Fri Oct 25, 2019 5:06 pm
- Phoenix Version: v1.0.8.16
- Has thanked: 100 times
- Been thanked: 56 times
Post
by Omar_one »
thank you
@bonbec
I just come back to delete this post as I found it ,, but you are fast as lightning
