Skip to content

Commit

Permalink
= 4.2.6.7 =
Browse files Browse the repository at this point in the history
~ Send params REQUEST on handle_send_email_on_background method.
  • Loading branch information
tungnxt89 committed May 14, 2024
1 parent 0f4b203 commit 4a5034d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/emails/class-lp-email-hooks.php
Expand Up @@ -96,7 +96,7 @@ protected function include() {
*/
public function handle_send_email_on_background() {
$args = func_get_args();
$args = array_merge( $args, $_REQUEST );
$args = array_merge( $args, [ 'params_request' => $_REQUEST ] );
$email_bg = LP_Background_Single_Email::instance();
$current_filter = current_filter();

Expand Down

0 comments on commit 4a5034d

Please sign in to comment.