Plugin Directory

Changeset 3472321


Ignore:
Timestamp:
03/02/2026 02:52:28 AM (4 weeks ago)
Author:
linguise
Message:

Updating to version 2.2.28

Location:
linguise
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • linguise/tags/2.2.28/languages/linguise.pot

    r3469020 r3472321  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.27\n"
     5"Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.28\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linguise\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • linguise/tags/2.2.28/linguise.php

    r3469020 r3472321  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.2.27
     7 * Version:2.2.28
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/tags/2.2.28/readme.txt

    r3469020 r3472321  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 2.2.27
     6Stable tag: 2.2.28
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    108108
    109109== Changelog ==
     110= 2.2.28 =
     111- Fix: PHP Warning: preg_match(): Unknown modifier in FragmentHandler.php
     112
    110113= 2.2.27 =
    111114- Fix:  Autocomplete issues in fibosearch
  • linguise/tags/2.2.28/src/FragmentHandler.php

    r3454249 r3472321  
    402402            $script_content = HTMLHelper::unclobberCdataInternal($script->textContent);
    403403
    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);
    405405            if ($match_res === false || $match_res === 0) {
    406406                $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  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.27');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.28');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.2.27');
     7    define('LINGUISE_VERSION', '2.2.28');
    88}
  • linguise/tags/2.2.28/vendor/composer/installed.php

    r3469020 r3472321  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '1b0b2123af24aa66106972ed3631db7054e720cd',
     6        'reference' => '3bc783813b5e886d60373e72edda68fc7ed22c8a',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '1b0b2123af24aa66106972ed3631db7054e720cd',
     34            'reference' => '3bc783813b5e886d60373e72edda68fc7ed22c8a',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
  • linguise/trunk/languages/linguise.pot

    r3469020 r3472321  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.27\n"
     5"Project-Id-Version: Linguise - AI Automatic Multilingual Translation 2.2.28\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/linguise\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • linguise/trunk/linguise.php

    r3469020 r3472321  
    55 * Plugin URI: https://www.linguise.com/
    66 * Description: Linguise translation plugin
    7  * Version:2.2.27
     7 * Version:2.2.28
    88 * Text Domain: linguise
    99 * Domain Path: /languages
  • linguise/trunk/readme.txt

    r3469020 r3472321  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 2.2.27
     6Stable tag: 2.2.28
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    108108
    109109== Changelog ==
     110= 2.2.28 =
     111- Fix: PHP Warning: preg_match(): Unknown modifier in FragmentHandler.php
     112
    110113= 2.2.27 =
    111114- Fix:  Autocomplete issues in fibosearch
  • linguise/trunk/src/FragmentHandler.php

    r3454249 r3472321  
    402402            $script_content = HTMLHelper::unclobberCdataInternal($script->textContent);
    403403
    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);
    405405            if ($match_res === false || $match_res === 0) {
    406406                $unmatched_res = preg_match_all('/var (.+)_params = (.*);/', $script_content, $json_multi_matches, PREG_SET_ORDER, 0);
  • linguise/trunk/src/constants.php

    r3469020 r3472321  
    11<?php
    22if (!defined('LINGUISE_SCRIPT_TRANSLATION_VERSION')) {
    3     define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.27');
     3    define('LINGUISE_SCRIPT_TRANSLATION_VERSION', 'wordpress_plugin/2.2.28');
    44}
    55
    66if (!defined('LINGUISE_VERSION')) {
    7     define('LINGUISE_VERSION', '2.2.27');
     7    define('LINGUISE_VERSION', '2.2.28');
    88}
  • linguise/trunk/vendor/composer/installed.php

    r3469020 r3472321  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '1b0b2123af24aa66106972ed3631db7054e720cd',
     6        'reference' => '3bc783813b5e886d60373e72edda68fc7ed22c8a',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-master',
    3333            'version' => 'dev-master',
    34             'reference' => '1b0b2123af24aa66106972ed3631db7054e720cd',
     34            'reference' => '3bc783813b5e886d60373e72edda68fc7ed22c8a',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.