Jump to content

BUG in /classes/OrderHistory PS1.3.6.0


ezakimak

Recommended Posts

Hi,
in /classes/OrderHistory you'll see this sentence in line 128

if (!isset($result['template']) AND Validate::isEmail($result['email']))
       {
                     ...... rest of the code


it should be

if (isset($result['template']) AND Validate::isEmail($result['email']))
       {
                     ...... rest of the code



because of this my shop wasnt sending emails to my customer when I change their order statuses

hope this help for someone else here

hugh

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...