Issue with conditional PHP check
-
Hi, Hannes!
I found an issue with a php conditional check at the
class-haet-mail.php
file.At line 312:
if(isset($options['footerlink']))
This conditional check will return
true
if this option is set, no matter if the value is 0 or 1, this was causing the option to not make any effect. To fix it, just change that line to this:if(isset($options['footerlink']) && $options['footerlink'] == 1 )
… and the option will take effect, as desired!
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Issue with conditional PHP check’ is closed to new replies.