The extra parameter actually seems unnecessary.

This commit is contained in:
Peter Fabian 2021-11-19 19:18:17 +01:00
parent b7c8e3ea68
commit 10daece5ae
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ if ( ! class_exists( 'WC_Email_Customer_New_Account', false ) ) :
}
if ( $this->is_enabled() && $this->get_recipient() ) {
$this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments(), $this->set_password_url );
$this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
}
$this->restore_locale();