Plugin Directory

Changeset 2170620


Ignore:
Timestamp:
10/09/2019 12:37:48 PM (6 years ago)
Author:
layotte
Message:

Taggign 2.0.18

Location:
ithemes-sync
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ithemes-sync/tags/2.0.18/history.txt

    r2138968 r2170620  
    2162162.0.17 - 2019-08-13 - Lew Ayotte
    217217    Bug Fix: Missing updater files from 2.0.16
     2182.0.18 - 2019-10-07 - Lew Ayotte
     219    Bug Fix: Adding validation to manage-site verb
  • ithemes-sync/tags/2.0.18/init.php

    r2138968 r2170620  
    55Description: Manage updates to your WordPress sites easily in one place.
    66Author: iThemes
    7 Version: 2.0.17
     7Version: 2.0.18
    88Author URI: http://ithemes.com/
    99Domain Path: /lang/
  • ithemes-sync/tags/2.0.18/lang/ithemes-sync.pot

    r2138968 r2170620  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: iThemes Sync 2.0.17\n"
     5"Project-Id-Version: iThemes Sync 2.0.18\n"
    66"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
    7 "POT-Creation-Date: 2019-08-13 15:29:34+00:00\n"
     7"POT-Creation-Date: 2019-10-08 17:06:31+00:00\n"
    88"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
    99"MIME-Version: 1.0\n"
     
    3636msgstr ""
    3737
    38 #. #-#-#-#-#  ithemes-sync.pot (iThemes Sync 2.0.17)  #-#-#-#-#
     38#. #-#-#-#-#  ithemes-sync.pot (iThemes Sync 2.0.18)  #-#-#-#-#
    3939#. Plugin Name of the plugin/theme
    4040#: admin.php:179 admin.php:185 settings-page.php:268
  • ithemes-sync/tags/2.0.18/readme.txt

    r2138968 r2170620  
    44Requires at least: 4.5
    55Tested up to: 5.3
    6 Stable tag: 2.0.17
     6Stable tag: 2.0.18
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    8686
    8787== Changelog ==
     88
     89= 2.0.18 =
     90* Bug Fix: Adding validation to manage-site verb
    8891
    8992= 2.0.17 =
  • ithemes-sync/tags/2.0.18/verbs/manage-site.php

    r1751911 r2170620  
    1010        Initial version
    1111*/
     12
     13require_once( $GLOBALS['ithemes_sync_path'] . '/server.php' );
    1214
    1315class Ithemes_Sync_Verb_Manage_Site extends Ithemes_Sync_Verb {
     
    2628        $arguments = Ithemes_Sync_Functions::merge_defaults( $arguments, $this->default_arguments );
    2729       
     30        $validate = Ithemes_Sync_Server::validate( $arguments['site_id'], $arguments['it_username'], $arguments['site_key'] );
     31       
     32        if ( is_wp_error( $validate ) ) {
     33            return new WP_Error( 'invalid-credentials', $validate->get_error_message() );
     34        }
     35               
    2836        if ( empty( $arguments['action'] ) || ! in_array( $arguments['action'], array( 'sync', 'unsync' ) ) ) {
    2937            return new WP_Error( 'missing-action', 'The action argument is missing or invalid. The action value should be sent in the action argument can contain the value `sync` or `unsync`.' );
  • ithemes-sync/trunk/history.txt

    r2138968 r2170620  
    2162162.0.17 - 2019-08-13 - Lew Ayotte
    217217    Bug Fix: Missing updater files from 2.0.16
     2182.0.18 - 2019-10-07 - Lew Ayotte
     219    Bug Fix: Adding validation to manage-site verb
  • ithemes-sync/trunk/init.php

    r2138968 r2170620  
    55Description: Manage updates to your WordPress sites easily in one place.
    66Author: iThemes
    7 Version: 2.0.17
     7Version: 2.0.18
    88Author URI: http://ithemes.com/
    99Domain Path: /lang/
  • ithemes-sync/trunk/lang/ithemes-sync.pot

    r2138968 r2170620  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: iThemes Sync 2.0.17\n"
     5"Project-Id-Version: iThemes Sync 2.0.18\n"
    66"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
    7 "POT-Creation-Date: 2019-08-13 15:29:34+00:00\n"
     7"POT-Creation-Date: 2019-10-08 17:06:31+00:00\n"
    88"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
    99"MIME-Version: 1.0\n"
     
    3636msgstr ""
    3737
    38 #. #-#-#-#-#  ithemes-sync.pot (iThemes Sync 2.0.17)  #-#-#-#-#
     38#. #-#-#-#-#  ithemes-sync.pot (iThemes Sync 2.0.18)  #-#-#-#-#
    3939#. Plugin Name of the plugin/theme
    4040#: admin.php:179 admin.php:185 settings-page.php:268
  • ithemes-sync/trunk/readme.txt

    r2138968 r2170620  
    44Requires at least: 4.5
    55Tested up to: 5.3
    6 Stable tag: 2.0.17
     6Stable tag: 2.0.18
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    8686
    8787== Changelog ==
     88
     89= 2.0.18 =
     90* Bug Fix: Adding validation to manage-site verb
    8891
    8992= 2.0.17 =
  • ithemes-sync/trunk/verbs/manage-site.php

    r1751911 r2170620  
    1010        Initial version
    1111*/
     12
     13require_once( $GLOBALS['ithemes_sync_path'] . '/server.php' );
    1214
    1315class Ithemes_Sync_Verb_Manage_Site extends Ithemes_Sync_Verb {
     
    2628        $arguments = Ithemes_Sync_Functions::merge_defaults( $arguments, $this->default_arguments );
    2729       
     30        $validate = Ithemes_Sync_Server::validate( $arguments['site_id'], $arguments['it_username'], $arguments['site_key'] );
     31       
     32        if ( is_wp_error( $validate ) ) {
     33            return new WP_Error( 'invalid-credentials', $validate->get_error_message() );
     34        }
     35               
    2836        if ( empty( $arguments['action'] ) || ! in_array( $arguments['action'], array( 'sync', 'unsync' ) ) ) {
    2937            return new WP_Error( 'missing-action', 'The action argument is missing or invalid. The action value should be sent in the action argument can contain the value `sync` or `unsync`.' );
Note: See TracChangeset for help on using the changeset viewer.