Skip to:
Content

BuddyPress.org

Ticket #8347: 8437.patch

File 8437.patch, 1.0 KB (added by imath, 4 years ago)
  • src/bp-core/classes/class-bp-phpmailer.php

    diff --git src/bp-core/classes/class-bp-phpmailer.php src/bp-core/classes/class-bp-phpmailer.php
    index 76b24395d..2a238572a 100644
    class BP_PHPMailer implements BP_Email_Delivery { 
    4444                 * and is now using version 6.0 of PHPMailer.
    4545                 */
    4646                if ( file_exists( ABSPATH . WPINC . '/PHPMailer/PHPMailer.php' ) ) {
     47                        $phpmailer_is_6_0 = true;
     48
    4749                        if ( ! ( $phpmailer instanceof PHPMailer\PHPMailer\PHPMailer ) ) {
    4850                                if ( ! class_exists( 'PHPMailer\\PHPMailer\\PHPMailer' ) ) {
    4951                                        require_once ABSPATH . WPINC . '/PHPMailer/PHPMailer.php';
    class BP_PHPMailer implements BP_Email_Delivery { 
    5153                                        require_once ABSPATH . WPINC . '/PHPMailer/Exception.php';
    5254                                }
    5355
    54                                 $phpmailer        = new PHPMailer\PHPMailer\PHPMailer( true );
    55                                 $phpmailer_is_6_0 = true;
     56                                $phpmailer = new PHPMailer\PHPMailer\PHPMailer( true );
    5657                        }
    5758                } else {
    5859                        if ( ! ( $phpmailer instanceof PHPMailer ) ) {