Version Description
- Bug Fix: Compatibility with WordPress 6.1
Download this release
Release Info
Developer | oakesjosh |
Plugin | iThemes Sync |
Version | 2.1.11 |
Comparing to | |
See all releases |
Code changes from version 2.1.10 to 2.1.11
- history.txt +2 -0
- init.php +3 -3
- readme.txt +5 -2
- request-handler.php +1 -0
history.txt
CHANGED
@@ -245,3 +245,5 @@
|
|
245 |
Enhancement: PHP 8 compatibility
|
246 |
2.1.10 - 2022-03-23 - Josh Oakes
|
247 |
Bug Fix: Fix compatibility issue with fallback UTF-8 encoder on PHP 7.4+
|
|
|
|
245 |
Enhancement: PHP 8 compatibility
|
246 |
2.1.10 - 2022-03-23 - Josh Oakes
|
247 |
Bug Fix: Fix compatibility issue with fallback UTF-8 encoder on PHP 7.4+
|
248 |
+
2.1.11 - 2022-11-02 - Josh Oakes
|
249 |
+
Bug Fix: Compatibility with WordPress 6.1
|
init.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: iThemes Sync
|
|
4 |
Plugin URI: http://ithemes.com/sync
|
5 |
Description: Manage updates to your WordPress sites easily in one place.
|
6 |
Author: iThemes
|
7 |
-
Version: 2.1.
|
8 |
Author URI: http://ithemes.com/
|
9 |
Domain Path: /lang/
|
10 |
iThemes Package: ithemes-sync
|
@@ -18,7 +18,7 @@ if ( ! empty( $GLOBALS['ithemes_sync_path'] ) ) {
|
|
18 |
|
19 |
add_action( 'all_admin_notices', function(){
|
20 |
echo '<div class="error"><p>';
|
21 |
-
echo sprintf( __( 'Only one iThemes Sync plugin can be active at a time. The plugin at <code>%1$s</code> is running while the plugin at <code>%2$s</code> was skipped in order to prevent errors. Please deactivate the plugin that you do not wish to use.', '
|
22 |
echo '</p></div>';
|
23 |
}, 0 );
|
24 |
}
|
@@ -30,7 +30,7 @@ if ( ! empty( $GLOBALS['ithemes_sync_path'] ) ) {
|
|
30 |
if ( PHP_VERSION_ID < 50600 ) {
|
31 |
add_action( 'admin_notices', function () {
|
32 |
echo '<div class="notice notice-error"><p>';
|
33 |
-
echo __( 'iThemes Sync requires PHP 5.6 or greater. Please update you PHP version to ensure all features work properly.', '
|
34 |
echo '</p></div>';
|
35 |
}, 0 );
|
36 |
}
|
4 |
Plugin URI: http://ithemes.com/sync
|
5 |
Description: Manage updates to your WordPress sites easily in one place.
|
6 |
Author: iThemes
|
7 |
+
Version: 2.1.11
|
8 |
Author URI: http://ithemes.com/
|
9 |
Domain Path: /lang/
|
10 |
iThemes Package: ithemes-sync
|
18 |
|
19 |
add_action( 'all_admin_notices', function(){
|
20 |
echo '<div class="error"><p>';
|
21 |
+
echo sprintf( __( 'Only one iThemes Sync plugin can be active at a time. The plugin at <code>%1$s</code> is running while the plugin at <code>%2$s</code> was skipped in order to prevent errors. Please deactivate the plugin that you do not wish to use.', 'LION' ), $active_plugin_path, $this_plugin_path );
|
22 |
echo '</p></div>';
|
23 |
}, 0 );
|
24 |
}
|
30 |
if ( PHP_VERSION_ID < 50600 ) {
|
31 |
add_action( 'admin_notices', function () {
|
32 |
echo '<div class="notice notice-error"><p>';
|
33 |
+
echo __( 'iThemes Sync requires PHP 5.6 or greater. Please update you PHP version to ensure all features work properly.', 'LION' );
|
34 |
echo '</p></div>';
|
35 |
}, 0 );
|
36 |
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: ithemes, layotte, oakesjosh
|
|
3 |
Tags: manage multiple Sites, backup, security, migrate, SEO, manage updates, administration, update manager, reports, sync, google analytics, optimize, uptime, ithemes, customize dashboard, client sites, maintenance, management, google webmaster tools, reporting
|
4 |
Requires at least: 4.5
|
5 |
Requires PHP: 5.6
|
6 |
-
Tested up to: 6.
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
|
10 |
|
@@ -87,6 +87,9 @@ Make steady, reliable income for WordPress maintenance with iThemes Sync Pro’s
|
|
87 |
|
88 |
== Changelog ==
|
89 |
|
|
|
|
|
|
|
90 |
= 2.1.10 =
|
91 |
* Bug Fix: Fix compatibility issue with fallback UTF-8 encoder on PHP 7.4+
|
92 |
|
3 |
Tags: manage multiple Sites, backup, security, migrate, SEO, manage updates, administration, update manager, reports, sync, google analytics, optimize, uptime, ithemes, customize dashboard, client sites, maintenance, management, google webmaster tools, reporting
|
4 |
Requires at least: 4.5
|
5 |
Requires PHP: 5.6
|
6 |
+
Tested up to: 6.1
|
7 |
+
Stable tag: 2.1.11
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
|
10 |
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
+
= 2.1.11 =
|
91 |
+
* Bug Fix: Compatibility with WordPress 6.1
|
92 |
+
|
93 |
= 2.1.10 =
|
94 |
* Bug Fix: Fix compatibility issue with fallback UTF-8 encoder on PHP 7.4+
|
95 |
|
request-handler.php
CHANGED
@@ -36,6 +36,7 @@ Version History
|
|
36 |
|
37 |
require_once( $GLOBALS['ithemes_sync_path'] . '/load-translations.php' );
|
38 |
require_once( $GLOBALS['ithemes_sync_path'] . '/functions.php' );
|
|
|
39 |
|
40 |
class Ithemes_Sync_Request_Handler {
|
41 |
private $logs = array();
|
36 |
|
37 |
require_once( $GLOBALS['ithemes_sync_path'] . '/load-translations.php' );
|
38 |
require_once( $GLOBALS['ithemes_sync_path'] . '/functions.php' );
|
39 |
+
require_once( ABSPATH . 'wp-includes/pluggable.php' );
|
40 |
|
41 |
class Ithemes_Sync_Request_Handler {
|
42 |
private $logs = array();
|