Skip to content

Commit

Permalink
Fix return code
Browse files Browse the repository at this point in the history
  • Loading branch information
alexookah committed Jul 31, 2024
1 parent 0796460 commit 8e58566
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/class-woocommerce-filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ public static function get_reset_password_message( $message, $key, $user_login )
$wc_reset_email->reset_key = $key;
$message = $wc_reset_email->style_inline( $wc_reset_email->get_content() );
return $message;
} else {
return $message;
}

return $message;
}

/**
Expand Down

0 comments on commit 8e58566

Please sign in to comment.