🔥 HOT: Changeset/ - Uncensored 2025

Changeset 2811260


Ignore:
Timestamp:
11/03/2022 04:44:56 PM (3 years ago)
Author:
oakesjosh
Message:

2.1.12

Location:
ithemes-sync
Files:
131 added
5 edited

Legend:

Unmodified
Added
Removed
  • ithemes-sync/trunk/history.txt

    r2810043 r2811260  
    2482482.1.11 - 2022-11-02 - Josh Oakes
    249249    Bug Fix: Compatibility with WordPress 6.1
     2502.1.12 - 2022-11-03 - Josh Oakes
     251    Bug Fix: Improve support for WordPress 6.1
  • ithemes-sync/trunk/init.php

    r2810043 r2811260  
    55Description: Manage updates to your WordPress sites easily in one place.
    66Author: iThemes
    7 Version: 2.1.11
     7Version: 2.1.12
    88Author URI: http://ithemes.com/
    99Domain Path: /lang/
  • ithemes-sync/trunk/load.php

    r2225554 r2811260  
    22
    33/*
    4 Load the Sync plugin components.
    5 Written by Chris Jean for iThemes.com
    6 Version 1.1.1
    7 
    8 Version History
    9     1.0.0 - 2014-03-26 - Chris Jean
    10         Created from version 1.3.5 of init.php.
    11     1.0.1 - 2014-10-13 - Chris Jean
    12         Added more robust checking of the $_GET['ithemes-sync-request'] data.
    13     1.1.0 - 2014-11-07 - Chris Jean
    14         Added a admin-ajax.php handler for sending Sync requests.
    15     1.1.1 - 2014-11-21 - Chris Jean
    16         Removed call to stripslashes_deep() in AJAX handler.
     4 *Load the Sync plugin components.
    175*/
    186
    19 function ithemes_sync_handle_ajax_request() {
     7function ithemes_sync_load_request_handler() {
    208    require_once( $GLOBALS['ithemes_sync_path'] . '/request-handler.php' );
    219}
    22 add_action( 'wp_ajax_nopriv_ithemes_sync_request', 'ithemes_sync_handle_ajax_request' );
    2310
    2411if ( ! empty( $_GET['ithemes-sync-request'] ) ) {
    25     require_once( $GLOBALS['ithemes_sync_path'] . '/request-handler.php' );
     12    add_action( 'plugins_loaded', 'ithemes_sync_load_request_handler' );
    2613}
    2714
  • ithemes-sync/trunk/readme.txt

    r2810043 r2811260  
    55Requires PHP: 5.6
    66Tested up to: 6.1
    7 Stable tag: 2.1.11
     7Stable tag: 2.1.12
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    8888== Changelog ==
    8989
     90= 2.1.12 =
     91* Bug Fix: Improve support for WordPress 6.1
     92
    9093= 2.1.11 =
    9194* Bug Fix: Compatibility with WordPress 6.1
  • ithemes-sync/trunk/request-handler.php

    r2810043 r2811260  
    3737require_once( $GLOBALS['ithemes_sync_path'] . '/load-translations.php' );
    3838require_once( $GLOBALS['ithemes_sync_path'] . '/functions.php' );
    39 require_once( ABSPATH . 'wp-includes/pluggable.php' );
    4039
    4140class Ithemes_Sync_Request_Handler {
Note: See TracChangeset for help on using the changeset viewer.