Still receiving email change notification
-
We’re still receiving the email-change notification emails even though we un-selected the option. I took a look at the code hook for it and noticed a potential oversight.
inside /plugins/manage-notification-emails/includes/pluggable-functions-1.2.php (and pluggable-functions-1.3.php).
function dont_send_email_change_email( $send=false, $user='', $userdata='') { return false; }
Should probably be
function dont_send_email_change_email( $send=false, $user='', $userdata='') { return '__return_false'; }
returning false will obviously not return anything, where you’re looking to return the value string ‘__return_false’.
Changing this option seems to have resolved things, although we’re still Q/A’ing.
- The topic ‘Still receiving email change notification’ is closed to new replies.