Changeset 3272510
- Timestamp:
- 04/14/2025 02:22:33 PM (9 months ago)
- Location:
- wp-multibyte-patch/trunk
- Files:
-
- 1 added
- 3 edited
-
class-wpmp-phpmailer-wp68.php (added)
-
ext/ja/class.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
wp-multibyte-patch.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-multibyte-patch/trunk/ext/ja/class.php
r2356677 r3272510 4 4 * 5 5 * @package WP_Multibyte_Patch 6 * @version 2.9 6 * @version 2.9.1 7 7 * @author Seisuke Kuraishi <[email protected]> 8 * @copyright Copyright (c) 202 0Seisuke Kuraishi, Tinybit Inc.8 * @copyright Copyright (c) 2025 Seisuke Kuraishi, Tinybit Inc. 9 9 * @license https://opensource.org/licenses/gpl-2.0.php GPLv2 10 10 * @link https://eastcoder.com/code/wp-multibyte-patch/ … … 50 50 require_once ABSPATH . WPINC . '/PHPMailer/SMTP.php'; 51 51 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 } 55 62 56 63 $phpmailer::$validator = static function ( $email ) { -
wp-multibyte-patch/trunk/readme.txt
r3183270 r3272510 3 3 Tags: multibyte,i18n,wp-multibyte-patch,Japanese 4 4 Requires at least: 5.2 5 Tested up to: 6. 76 Stable tag: 2.9 5 Tested up to: 6.8 6 Stable tag: 2.9.1 7 7 8 8 Multibyte functionality enhancement for the WordPress Japanese package. -
wp-multibyte-patch/trunk/wp-multibyte-patch.php
r2356677 r3272510 3 3 Plugin Name: WP Multibyte Patch 4 4 Description: Multibyte functionality enhancement for the WordPress Japanese package. 5 Version: 2.9 5 Version: 2.9.1 6 6 Plugin URI: https://eastcoder.com/code/wp-multibyte-patch/ 7 7 Author: Seisuke Kuraishi … … 16 16 * 17 17 * @package WP_Multibyte_Patch 18 * @version 2.9 18 * @version 2.9.1 19 19 * @author Seisuke Kuraishi <[email protected]> 20 * @copyright Copyright (c) 202 0Seisuke Kuraishi, Tinybit Inc.20 * @copyright Copyright (c) 2025 Seisuke Kuraishi, Tinybit Inc. 21 21 * @license https://opensource.org/licenses/gpl-2.0.php GPLv2 22 22 * @link https://eastcoder.com/code/wp-multibyte-patch/
Note: See TracChangeset
for help on using the changeset viewer.