Changeset 3472321
- Timestamp:
- 03/02/2026 02:52:28 AM (4 weeks ago)
- Location:
- linguise
- Files:
-
- 12 edited
- 1 copied
-
tags/2.2.28 (copied) (copied from linguise/trunk)
-
tags/2.2.28/languages/linguise.pot (modified) (1 diff)
-
tags/2.2.28/linguise.php (modified) (1 diff)
-
tags/2.2.28/readme.txt (modified) (2 diffs)
-
tags/2.2.28/src/FragmentHandler.php (modified) (1 diff)
-
tags/2.2.28/src/constants.php (modified) (1 diff)
-
tags/2.2.28/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/languages/linguise.pot (modified) (1 diff)
-
trunk/linguise.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/FragmentHandler.php (modified) (1 diff)
-
trunk/src/constants.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linguise/tags/2.2.28/languages/linguise.pot
r3469020 r3472321 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.2 7\n"5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.28\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linguise\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
linguise/tags/2.2.28/linguise.php
r3469020 r3472321 5 5 * Plugin URI: https://www.linguise.com/ 6 6 * Description: Linguise translation plugin 7 * Version:2.2.2 77 * Version:2.2.28 8 8 * Text Domain: linguise 9 9 * Domain Path: /languages -
linguise/tags/2.2.28/readme.txt
r3469020 r3472321 4 4 Requires at least: 4.0 5 5 Tested up to: 6.9 6 Stable tag: 2.2.2 76 Stable tag: 2.2.28 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 108 108 109 109 == Changelog == 110 = 2.2.28 = 111 - Fix: PHP Warning: preg_match(): Unknown modifier in FragmentHandler.php 112 110 113 = 2.2.27 = 111 114 - Fix: Autocomplete issues in fibosearch -
linguise/tags/2.2.28/src/FragmentHandler.php
r3454249 r3472321 402 402 $script_content = HTMLHelper::unclobberCdataInternal($script->textContent); 403 403 404 $match_res = preg_match('/var ' . str_replace('-', '_', $frag_id) . '_params = (.*);/', $script_content, $json_matches);404 $match_res = preg_match('/var ' . preg_quote(str_replace('-', '_', $frag_id), '/') . '_params = (.*);/', $script_content, $json_matches); 405 405 if ($match_res === false || $match_res === 0) { 406 406 $unmatched_res = preg_match_all('/var (.+)_params = (.*);/', $script_content, $json_multi_matches, PREG_SET_ORDER, 0); -
linguise/tags/2.2.28/src/constants.php
r3469020 r3472321 1 1 <?php 2 2 if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) { 3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.2 7');3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.28'); 4 4 } 5 5 6 6 if (!defined('LINGUISE_VERSION')) { 7 define('LINGUISE_VERSION', '2.2.2 7');7 define('LINGUISE_VERSION', '2.2.28'); 8 8 } -
linguise/tags/2.2.28/vendor/composer/installed.php
r3469020 r3472321 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 1b0b2123af24aa66106972ed3631db7054e720cd',6 'reference' => '3bc783813b5e886d60373e72edda68fc7ed22c8a', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 32 32 'pretty_version' => 'dev-master', 33 33 'version' => 'dev-master', 34 'reference' => ' 1b0b2123af24aa66106972ed3631db7054e720cd',34 'reference' => '3bc783813b5e886d60373e72edda68fc7ed22c8a', 35 35 'type' => 'library', 36 36 'install_path' => __DIR__ . '/../../', -
linguise/trunk/languages/linguise.pot
r3469020 r3472321 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.2 7\n"5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.28\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linguise\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
linguise/trunk/linguise.php
r3469020 r3472321 5 5 * Plugin URI: https://www.linguise.com/ 6 6 * Description: Linguise translation plugin 7 * Version:2.2.2 77 * Version:2.2.28 8 8 * Text Domain: linguise 9 9 * Domain Path: /languages -
linguise/trunk/readme.txt
r3469020 r3472321 4 4 Requires at least: 4.0 5 5 Tested up to: 6.9 6 Stable tag: 2.2.2 76 Stable tag: 2.2.28 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 108 108 109 109 == Changelog == 110 = 2.2.28 = 111 - Fix: PHP Warning: preg_match(): Unknown modifier in FragmentHandler.php 112 110 113 = 2.2.27 = 111 114 - Fix: Autocomplete issues in fibosearch -
linguise/trunk/src/FragmentHandler.php
r3454249 r3472321 402 402 $script_content = HTMLHelper::unclobberCdataInternal($script->textContent); 403 403 404 $match_res = preg_match('/var ' . str_replace('-', '_', $frag_id) . '_params = (.*);/', $script_content, $json_matches);404 $match_res = preg_match('/var ' . preg_quote(str_replace('-', '_', $frag_id), '/') . '_params = (.*);/', $script_content, $json_matches); 405 405 if ($match_res === false || $match_res === 0) { 406 406 $unmatched_res = preg_match_all('/var (.+)_params = (.*);/', $script_content, $json_multi_matches, PREG_SET_ORDER, 0); -
linguise/trunk/src/constants.php
r3469020 r3472321 1 1 <?php 2 2 if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) { 3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.2 7');3 define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.28'); 4 4 } 5 5 6 6 if (!defined('LINGUISE_VERSION')) { 7 define('LINGUISE_VERSION', '2.2.2 7');7 define('LINGUISE_VERSION', '2.2.28'); 8 8 } -
linguise/trunk/vendor/composer/installed.php
r3469020 r3472321 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 1b0b2123af24aa66106972ed3631db7054e720cd',6 'reference' => '3bc783813b5e886d60373e72edda68fc7ed22c8a', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 32 32 'pretty_version' => 'dev-master', 33 33 'version' => 'dev-master', 34 'reference' => ' 1b0b2123af24aa66106972ed3631db7054e720cd',34 'reference' => '3bc783813b5e886d60373e72edda68fc7ed22c8a', 35 35 'type' => 'library', 36 36 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.