Changeset 3385402
- Timestamp:
- 10/27/2025 05:59:18 PM (4 months ago)
- Location:
- woocommerce-mailchimp
- Files:
-
- 6 edited
- 1 copied
-
tags/2.5.1 (copied) (copied from woocommerce-mailchimp/trunk)
-
tags/2.5.1/includes/class-ss-wc-mailchimp-plugin.php (modified) (2 diffs)
-
tags/2.5.1/readme.txt (modified) (2 diffs)
-
tags/2.5.1/woocommerce-mailchimp.php (modified) (1 diff)
-
trunk/includes/class-ss-wc-mailchimp-plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-mailchimp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-mailchimp/tags/2.5.1/includes/class-ss-wc-mailchimp-plugin.php
r3382951 r3385402 16 16 * @var string 17 17 */ 18 private static $version = '2.5. 0';18 private static $version = '2.5.1'; 19 19 20 20 /** … … 481 481 register_deactivation_hook( SS_WC_MAILCHIMP_FILE, array( __CLASS__, 'deactivate' ) ); 482 482 483 // Load plugin textdomain on plugins_loaded hook (fix for just-in-time translation loading)484 add_action( ' plugins_loaded', array( $this, 'load_plugin_textdomain' ) );483 // Load plugin textdomain on init hook (fix for just-in-time translation loading in WP 6.7+) 484 add_action( 'init', array( $this, 'load_plugin_textdomain' ) ); 485 485 486 486 // Register AJAX handlers - must be done on every request, not just admin -
woocommerce-mailchimp/tags/2.5.1/readme.txt
r3382951 r3385402 7 7 WC tested up to: 10.3.0 8 8 Requires PHP: 5.6 9 Stable tag: 2.5. 010 Version: 2.5. 09 Stable tag: 2.5.1 10 Version: 2.5.1 11 11 License: GPLv3 12 12 … … 120 120 121 121 == Changelog == 122 123 #### 2.5.1 - Oct 27, 2025 124 - Fix plugin text domain hook. 122 125 123 126 #### 2.5.0 - Oct 22, 2025 -
woocommerce-mailchimp/tags/2.5.1/woocommerce-mailchimp.php
r3382951 r3385402 6 6 * Author: Saint Systems 7 7 * Author URI: https://www.saintsystems.com 8 * Version: 2.5. 08 * Version: 2.5.1 9 9 * WC tested up to: 10.3.0 10 10 * Text Domain: woocommerce-mailchimp -
woocommerce-mailchimp/trunk/includes/class-ss-wc-mailchimp-plugin.php
r3382951 r3385402 16 16 * @var string 17 17 */ 18 private static $version = '2.5. 0';18 private static $version = '2.5.1'; 19 19 20 20 /** … … 481 481 register_deactivation_hook( SS_WC_MAILCHIMP_FILE, array( __CLASS__, 'deactivate' ) ); 482 482 483 // Load plugin textdomain on plugins_loaded hook (fix for just-in-time translation loading)484 add_action( ' plugins_loaded', array( $this, 'load_plugin_textdomain' ) );483 // Load plugin textdomain on init hook (fix for just-in-time translation loading in WP 6.7+) 484 add_action( 'init', array( $this, 'load_plugin_textdomain' ) ); 485 485 486 486 // Register AJAX handlers - must be done on every request, not just admin -
woocommerce-mailchimp/trunk/readme.txt
r3382951 r3385402 7 7 WC tested up to: 10.3.0 8 8 Requires PHP: 5.6 9 Stable tag: 2.5. 010 Version: 2.5. 09 Stable tag: 2.5.1 10 Version: 2.5.1 11 11 License: GPLv3 12 12 … … 120 120 121 121 == Changelog == 122 123 #### 2.5.1 - Oct 27, 2025 124 - Fix plugin text domain hook. 122 125 123 126 #### 2.5.0 - Oct 22, 2025 -
woocommerce-mailchimp/trunk/woocommerce-mailchimp.php
r3382951 r3385402 6 6 * Author: Saint Systems 7 7 * Author URI: https://www.saintsystems.com 8 * Version: 2.5. 08 * Version: 2.5.1 9 9 * WC tested up to: 10.3.0 10 10 * Text Domain: woocommerce-mailchimp
Note: See TracChangeset
for help on using the changeset viewer.