🔒 EXCLUSIVE: Changeset/ - Full Archive

Changeset 3272510


Ignore:
Timestamp:
04/14/2025 02:22:33 PM (9 months ago)
Author:
tenpura
Message:

WP Multibyte Patch 2.9.1

Location:
wp-multibyte-patch/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-multibyte-patch/trunk/ext/ja/class.php

    r2356677 r3272510  
    44 *
    55 * @package WP_Multibyte_Patch
    6  * @version 2.9
     6 * @version 2.9.1
    77 * @author Seisuke Kuraishi <[email protected]>
    8  * @copyright Copyright (c) 2020 Seisuke Kuraishi, Tinybit Inc.
     8 * @copyright Copyright (c) 2025 Seisuke Kuraishi, Tinybit Inc.
    99 * @license https://opensource.org/licenses/gpl-2.0.php GPLv2
    1010 * @link https://eastcoder.com/code/wp-multibyte-patch/
     
    5050            require_once ABSPATH . WPINC . '/PHPMailer/SMTP.php';
    5151            require_once ABSPATH . WPINC . '/PHPMailer/Exception.php';
    52             require_once dirname( dirname( dirname( __FILE__ ) ) ) . '/includes/class-wpmp-phpmailer.php';
    53 
    54             $phpmailer = new WPMP_PHPMailer( true );
     52
     53            if( file_exists( ABSPATH . WPINC . '/class-wp-phpmailer.php' ) ) {
     54                require_once ABSPATH . WPINC . '/class-wp-phpmailer.php';
     55                require_once dirname( dirname( dirname( __FILE__ ) ) ) . '/includes/class-wpmp-phpmailer-wp68.php';
     56                $phpmailer = new WPMP_PHPMailer_WP68( true );
     57            }
     58            else {
     59                require_once dirname( dirname( dirname( __FILE__ ) ) ) . '/includes/class-wpmp-phpmailer.php';
     60                $phpmailer = new WPMP_PHPMailer( true );
     61            }
    5562
    5663            $phpmailer::$validator = static function ( $email ) {
  • wp-multibyte-patch/trunk/readme.txt

    r3183270 r3272510  
    33Tags: multibyte,i18n,wp-multibyte-patch,Japanese
    44Requires at least: 5.2
    5 Tested up to: 6.7
    6 Stable tag: 2.9
     5Tested up to: 6.8
     6Stable tag: 2.9.1
    77
    88Multibyte functionality enhancement for the WordPress Japanese package.
  • wp-multibyte-patch/trunk/wp-multibyte-patch.php

    r2356677 r3272510  
    33Plugin Name: WP Multibyte Patch
    44Description: Multibyte functionality enhancement for the WordPress Japanese package.
    5 Version: 2.9
     5Version: 2.9.1
    66Plugin URI: https://eastcoder.com/code/wp-multibyte-patch/
    77Author: Seisuke Kuraishi
     
    1616 *
    1717 * @package WP_Multibyte_Patch
    18  * @version 2.9
     18 * @version 2.9.1
    1919 * @author Seisuke Kuraishi <[email protected]>
    20  * @copyright Copyright (c) 2020 Seisuke Kuraishi, Tinybit Inc.
     20 * @copyright Copyright (c) 2025 Seisuke Kuraishi, Tinybit Inc.
    2121 * @license https://opensource.org/licenses/gpl-2.0.php GPLv2
    2222 * @link https://eastcoder.com/code/wp-multibyte-patch/
Note: See TracChangeset for help on using the changeset viewer.