💦 FULL SET: Changeset/ - Full Gallery 2025

Changeset 2699095


Ignore:
Timestamp:
03/24/2022 06:01:24 PM (4 years ago)
Author:
oakesjosh
Message:

2.1.10

Location:
ithemes-sync
Files:
131 added
4 edited

Legend:

Unmodified
Added
Removed
  • ithemes-sync/trunk/class-ithemes-sync-utf8-encoder.php

    r1669854 r2699095  
    190190    $buf = "";
    191191    for($i = 0; $i < $max; $i++){
    192         $c1 = $text{$i};
     192        $c1 = $text[$i];
    193193        if($c1>="\xc0"){ //Should be converted to UTF8, if it's not UTF8 already
    194           $c2 = $i+1 >= $max? "\x00" : $text{$i+1};
    195           $c3 = $i+2 >= $max? "\x00" : $text{$i+2};
    196           $c4 = $i+3 >= $max? "\x00" : $text{$i+3};
     194          $c2 = $i+1 >= $max? "\x00" : $text[$i+1];
     195          $c3 = $i+2 >= $max? "\x00" : $text[$i+2];
     196          $c4 = $i+3 >= $max? "\x00" : $text[$i+3];
    197197            if($c1 >= "\xc0" & $c1 <= "\xdf"){ //looks like 2 bytes UTF8
    198198                if($c2 >= "\x80" && $c2 <= "\xbf"){ //yeah, almost sure it's UTF8 already
  • ithemes-sync/trunk/history.txt

    r2584414 r2699095  
    2442442.1.9 - 2021-08-17 - Josh Oakes
    245245    Enhancement: PHP 8 compatibility
     2462.1.10 - 2022-03-23 - Josh Oakes
     247    Bug Fix: Fix compatibility issue with fallback UTF-8 encoder on PHP 7.4+
  • ithemes-sync/trunk/init.php

    r2584414 r2699095  
    55Description: Manage updates to your WordPress sites easily in one place.
    66Author: iThemes
    7 Version: 2.1.9
     7Version: 2.1.10
    88Author URI: http://ithemes.com/
    99Domain Path: /lang/
  • ithemes-sync/trunk/readme.txt

    r2663816 r2699095  
    44Requires at least: 4.5
    55Requires PHP: 5.6
    6 Tested up to: 5.9
    7 Stable tag: 2.1.9
     6Tested up to: 5.9.2
     7Stable tag: 2.1.10
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    8888== Changelog ==
    8989
     90= 2.1.10 =
     91* Bug Fix: Fix compatibility issue with fallback UTF-8 encoder on PHP 7.4+
     92
    9093= 2.1.9 =
    9194* Enhancement: PHP 8 compatibility
Note: See TracChangeset for help on using the changeset viewer.