Plugin Directory

Changeset 2138878


Ignore:
Timestamp:
08/13/2019 01:23:12 PM (7 years ago)
Author:
layotte
Message:

Tagging 2.0.16

Location:
ithemes-sync
Files:
85 added
4 edited

Legend:

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

    r2038991 r2138878  
    212212    json_encode to float version numbers like 5.1 as 5.0999999999996, which
    213213    disrupts our hashing algorithm.
     2142.0.16 - 2019-08-13 - Lew Ayotte
     215    Enhancement: 2FA Authorization from Sync Dashbaord
  • ithemes-sync/trunk/init.php

    r2038991 r2138878  
    55Description: Manage updates to your WordPress sites easily in one place.
    66Author: iThemes
    7 Version: 2.0.15
     7Version: 2.0.16
    88Author URI: http://ithemes.com/
    99Domain Path: /lang/
  • ithemes-sync/trunk/notices.php

    r1924219 r2138878  
    2727            /* iThemes Security */
    2828            add_action( 'itsec_log_add', array( $this, 'itsec_log_add' ), 10, 3 );
     29            add_action( 'itsec_two_factor_interstitial_pre_render', array( $this, 'itsec_two_factor_interstitial_pre_render' ), 10, 2 );
    2930        }
    3031    }
     
    5051                ithemes_sync_send_urgent_notice( 'ithemes-security', 'report', 'iThemes Security', 'iThemes Security', $data );
    5152            }
     53        }
     54    }
     55   
     56    function itsec_two_factor_interstitial_pre_render( $session, $provider ) {
     57        $user = $session->get_user();
     58        $session_id = $session->get_id();
     59        if ( $user && $session_id ) {
     60            ithemes_sync_send_urgent_notice( 'ithemes-security', '2fa', 'iThemes Security', 'iThemes Security', array( 'user_id' => $user->ID, 'session_id' => $session_id ) );
    5261        }
    5362    }
  • ithemes-sync/trunk/readme.txt

    r2045314 r2138878  
    33Tags: 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
    44Requires at least: 4.5
    5 Tested up to: 5.2
    6 Stable tag: 2.0.15
     5Tested up to: 4.10
     6Stable tag: 2.0.16
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
     
    8686
    8787== Changelog ==
     88
     89= 2.0.16 =
     90* Enhancement: 2FA Authorization from Sync Dashbaord
    8891
    8992= 2.0.15 =
Note: See TracChangeset for help on using the changeset viewer.