Plugin Directory

Changeset 3240190


Ignore:
Timestamp:
02/13/2025 02:40:42 PM (13 months ago)
Author:
memsource
Message:

Version 4.7.3

Location:
memsource-connector/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • memsource-connector/trunk/memsource.php

    r3067665 r3240190  
    55Plugin URI: https://support.phrase.com/hc/en-us/articles/5709657294620
    66Description: Localize WordPress websites with the help of professional translation tools: translation memories, terminology bases and quality checkers.
    7 Version: 4.7.2
     7Version: 4.7.3
    88Text Domain: memsource
    99Domain Path: /locale
     
    1818
    1919define('MEMSOURCE_PLUGIN_PATH', dirname(__FILE__));
    20 define('MEMSOURCE_PLUGIN_VERSION', '4.7.2');
     20define('MEMSOURCE_PLUGIN_VERSION', '4.7.3');
    2121define('MEMSOURCE_PLUGIN_DIR_URL', plugin_dir_url(__FILE__));
    2222define('MEMSOURCE_PLUGIN_REQUIERED_PHP_VERSION', '7.4');
  • memsource-connector/trunk/readme.txt

    r3067665 r3240190  
    44Requires at least: 4.9
    55Requires PHP: 7.4
    6 Tested up to: 6.2
     6Tested up to: 6.7.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    3333== Changelog ==
    3434
     35= 4.7.3 =
     36*Release Date - 13 Feb 2025*
     37
     38* Tested up to WordPress 6.7.1
     39
    3540= 4.7.2 =
    3641*Release Date - 9 Apr 2024*
  • memsource-connector/trunk/src/Service/ExternalPlugin/SeoPlugin.php

    r2870027 r3240190  
    5757            preg_match_all($pattern, $customFieldValue, $matches);
    5858
    59             foreach ($matches[0] ?? [] as $match) {
     59            foreach ($matches[0] as $match) {
    6060                $replacement = self::YOAST_SEO_TAG_START . str_replace('%%', '', $match) . self::YOAST_SEO_TAG_END;
    6161                $customFieldValue = str_replace($match, $replacement, $customFieldValue);
     
    6767            preg_match_all($pattern, $customFieldValue, $matches);
    6868
    69             foreach ($matches[0] ?? [] as $match) {
     69            foreach ($matches[0] as $match) {
    7070                $replacement = self::SEOPRESS_TAG_START . str_replace('%%', '', $match) . self::SEOPRESS_TAG_END;
    7171                $customFieldValue = str_replace($match, $replacement, $customFieldValue);
     
    8888            preg_match_all($pattern, $customFieldValue, $matches);
    8989
    90             foreach ($matches[0] ?? [] as $match) {
     90            foreach ($matches[0] as $match) {
    9191                $replacement = '';
    9292
  • memsource-connector/trunk/src/Service/PlaceholderService.php

    r2746961 r3240190  
    2626        preg_match_all($pattern, $text, $matches);
    2727
    28         foreach ($matches[0] ?? [] as $match) {
     28        foreach ($matches[0] as $match) {
    2929            $pos = strpos($text, $match);
    3030
     
    4848        preg_match_all($pattern, $text, $matches);
    4949
    50         foreach ($matches[0] ?? [] as $match) {
     50        foreach ($matches[0] as $match) {
    5151            $pos = strpos($text, $match);
    5252
Note: See TracChangeset for help on using the changeset viewer.