Changeset 3414869
- Timestamp:
- 12/09/2025 04:08:45 AM (4 months ago)
- Location:
- linguise
- Files:
-
- 12 edited
- 1 copied
-
tags/2.2.8 (copied) (copied from linguise/trunk)
-
tags/2.2.8/linguise.php (modified) (1 diff)
-
tags/2.2.8/readme.txt (modified) (2 diffs)
-
tags/2.2.8/src/FragmentBase.php (modified) (1 diff)
-
tags/2.2.8/src/constants.php (modified) (1 diff)
-
tags/2.2.8/src/thirdparty/wc/woocommerce.php (modified) (2 diffs)
-
tags/2.2.8/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/linguise.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/FragmentBase.php (modified) (1 diff)
-
trunk/src/constants.php (modified) (1 diff)
-
trunk/src/thirdparty/wc/woocommerce.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linguise/tags/2.2.8/linguise.php
r3413813 r3414869 5 5 * Plugin URI: https://www.linguise.com/ 6 6 * Description: Linguise translation plugin 7 * Version:2.2. 77 * Version:2.2.8 8 8 * Text Domain: linguise 9 9 * Domain Path: /languages -
linguise/tags/2.2.8/readme.txt
r3413813 r3414869 4 4 Requires at least: 4.0 5 5 Tested up to: 6.9 6 Stable tag: 2.2. 76 Stable tag: 2.2.8 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 108 108 == Changelog == 109 109 110 = 2.2.8 = 111 - Fix: WooCommerce Stripe Gateway not loaded in classic checkout 112 110 113 = 2.2.7 = 111 114 - Fix: Issues with style not enqueueing in WP 6.9 -
linguise/tags/2.2.8/src/FragmentBase.php
r3413813 r3414869 455 455 * @return boolean|null - True if it's allowed, false if it's not 456 456 */ 457 p rotectedstatic function isKeyAllowed($key, $full_key)457 public static function isKeyAllowed($key, $full_key) 458 458 { 459 459 $wp_frag_list = self::getKeyFilters(); -
linguise/tags/2.2.8/src/constants.php
r3413813 r3414869 1 1 <?php 2 2 if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) { 3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2. 7');3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.8'); 4 4 } 5 5 6 6 if (!defined('LINGUISE_VERSION')) { 7 define('LINGUISE_VERSION', '2.2. 7');7 define('LINGUISE_VERSION', '2.2.8'); 8 8 } -
linguise/tags/2.2.8/src/thirdparty/wc/woocommerce.php
r3397694 r3414869 182 182 'Cart-Hash', 183 183 'Cart-Token', 184 'wcpbc_currency', 185 'wcpbc_stripe_upe', 184 186 ]; 185 187 foreach ($exact_disallowed as $disallowed_key) { … … 624 626 } elseif (is_array($data)) { 625 627 foreach ($data as $class => $fragment) { 628 if (!is_string($fragment)) { 629 continue; // Ignore non-string fragments 630 } 631 626 632 $html_content .= '<divlinguise data-wp-linguise-class="' . $class . '">' . $fragment . '</divlinguise>'; 627 633 } -
linguise/tags/2.2.8/vendor/composer/installed.php
r3413813 r3414869 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 977edba05e2b23018e0cc6a5892ac6ec2bcf72a5',6 'reference' => 'f8f2694687b16eae024c3b452a76905f49879d9f', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 32 32 'pretty_version' => 'dev-master', 33 33 'version' => 'dev-master', 34 'reference' => ' 977edba05e2b23018e0cc6a5892ac6ec2bcf72a5',34 'reference' => 'f8f2694687b16eae024c3b452a76905f49879d9f', 35 35 'type' => 'library', 36 36 'install_path' => __DIR__ . '/../../', -
linguise/trunk/linguise.php
r3413813 r3414869 5 5 * Plugin URI: https://www.linguise.com/ 6 6 * Description: Linguise translation plugin 7 * Version:2.2. 77 * Version:2.2.8 8 8 * Text Domain: linguise 9 9 * Domain Path: /languages -
linguise/trunk/readme.txt
r3413813 r3414869 4 4 Requires at least: 4.0 5 5 Tested up to: 6.9 6 Stable tag: 2.2. 76 Stable tag: 2.2.8 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 108 108 == Changelog == 109 109 110 = 2.2.8 = 111 - Fix: WooCommerce Stripe Gateway not loaded in classic checkout 112 110 113 = 2.2.7 = 111 114 - Fix: Issues with style not enqueueing in WP 6.9 -
linguise/trunk/src/FragmentBase.php
r3413813 r3414869 455 455 * @return boolean|null - True if it's allowed, false if it's not 456 456 */ 457 p rotectedstatic function isKeyAllowed($key, $full_key)457 public static function isKeyAllowed($key, $full_key) 458 458 { 459 459 $wp_frag_list = self::getKeyFilters(); -
linguise/trunk/src/constants.php
r3413813 r3414869 1 1 <?php 2 2 if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) { 3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2. 7');3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.8'); 4 4 } 5 5 6 6 if (!defined('LINGUISE_VERSION')) { 7 define('LINGUISE_VERSION', '2.2. 7');7 define('LINGUISE_VERSION', '2.2.8'); 8 8 } -
linguise/trunk/src/thirdparty/wc/woocommerce.php
r3397694 r3414869 182 182 'Cart-Hash', 183 183 'Cart-Token', 184 'wcpbc_currency', 185 'wcpbc_stripe_upe', 184 186 ]; 185 187 foreach ($exact_disallowed as $disallowed_key) { … … 624 626 } elseif (is_array($data)) { 625 627 foreach ($data as $class => $fragment) { 628 if (!is_string($fragment)) { 629 continue; // Ignore non-string fragments 630 } 631 626 632 $html_content .= '<divlinguise data-wp-linguise-class="' . $class . '">' . $fragment . '</divlinguise>'; 627 633 } -
linguise/trunk/vendor/composer/installed.php
r3413813 r3414869 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 977edba05e2b23018e0cc6a5892ac6ec2bcf72a5',6 'reference' => 'f8f2694687b16eae024c3b452a76905f49879d9f', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 32 32 'pretty_version' => 'dev-master', 33 33 'version' => 'dev-master', 34 'reference' => ' 977edba05e2b23018e0cc6a5892ac6ec2bcf72a5',34 'reference' => 'f8f2694687b16eae024c3b452a76905f49879d9f', 35 35 'type' => 'library', 36 36 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.