Plugin Directory

Changeset 1785293


Ignore:
Timestamp:
12/12/2017 10:49:36 AM (8 years ago)
Author:
mediaburst
Message:

Update Metadata

Location:
clockwork-two-factor-authentication
Files:
3 edited
9 copied

Legend:

Unmodified
Added
Removed
  • clockwork-two-factor-authentication/tags/1.1.2/clockwork-two-factor.php

    r981582 r1785293  
    44Plugin URI: http://wordpress.org/extend/plugins/clockwork-two-factor/
    55Description: Proper security for your Wordpress site. Text message-based two factor authentication for logins.
    6 Version: 1.0.2
     6Version: 1.1.2
    77Author: Clockwork
    88Author URI: http://www.clockworksms.com/
    99*/
    10  
     10
    1111/*  Copyright 2013, Mediaburst Limited.
    1212
     
    3939    $versions = array_reverse( $versions );
    4040    $first_plugin = reset( $versions );
    41    
     41
    4242    // Require Clockwork plugin architecture
    4343    if( !class_exists( 'Clockwork_Plugin' ) ) {
     
    5252    foreach( $GLOBALS['clockwork_plugins'] as $plugin => $version ) {
    5353      preg_match( '/([0-9]+)\./', $version, $matches );
    54      
     54
    5555      if( intval( $matches[1] ) < $major_version ) {
    5656        // If it's a major version behind, automatically deactivate it
     
    5959        $plugin_data = get_plugin_data( $plugin_path );
    6060        deactivate_plugins( $plugin_path );
    61        
     61
    6262        // Output a message to tell the admin what's going on
    6363        $message = '<div id="message" class="error"><p><strong>The plugin ' . $plugin_data['Name'] . ' has an important update available. It has been disabled until it has been updated.</strong></p></div>';
     
    6666        require_once( dirname( dirname( __FILE__ ) ) . '/' . $plugin . '/main.php' );
    6767      }
    68      
     68
    6969    }
    7070  }
    71  
     71
    7272}
    7373
  • clockwork-two-factor-authentication/tags/1.1.2/readme.txt

    r1781424 r1785293  
    77Requires at least: 3.0.0
    88Tested up to: 4.0.0
    9 Stable tag: 1.1.1
     9Stable tag: 1.1.2
    1010License: MIT
    1111
     
    6666== Changelog ==
    6767
     68= 1.1.2 =
     69* Security Hardening
     70
    6871= 1.1.0 =
    6972* Fix XSS Vulnerability
  • clockwork-two-factor-authentication/trunk/clockwork-two-factor.php

    r981582 r1785293  
    44Plugin URI: http://wordpress.org/extend/plugins/clockwork-two-factor/
    55Description: Proper security for your Wordpress site. Text message-based two factor authentication for logins.
    6 Version: 1.0.2
     6Version: 1.1.2
    77Author: Clockwork
    88Author URI: http://www.clockworksms.com/
    99*/
    10  
     10
    1111/*  Copyright 2013, Mediaburst Limited.
    1212
     
    3939    $versions = array_reverse( $versions );
    4040    $first_plugin = reset( $versions );
    41    
     41
    4242    // Require Clockwork plugin architecture
    4343    if( !class_exists( 'Clockwork_Plugin' ) ) {
     
    5252    foreach( $GLOBALS['clockwork_plugins'] as $plugin => $version ) {
    5353      preg_match( '/([0-9]+)\./', $version, $matches );
    54      
     54
    5555      if( intval( $matches[1] ) < $major_version ) {
    5656        // If it's a major version behind, automatically deactivate it
     
    5959        $plugin_data = get_plugin_data( $plugin_path );
    6060        deactivate_plugins( $plugin_path );
    61        
     61
    6262        // Output a message to tell the admin what's going on
    6363        $message = '<div id="message" class="error"><p><strong>The plugin ' . $plugin_data['Name'] . ' has an important update available. It has been disabled until it has been updated.</strong></p></div>';
     
    6666        require_once( dirname( dirname( __FILE__ ) ) . '/' . $plugin . '/main.php' );
    6767      }
    68      
     68
    6969    }
    7070  }
    71  
     71
    7272}
    7373
  • clockwork-two-factor-authentication/trunk/readme.txt

    r1781424 r1785293  
    77Requires at least: 3.0.0
    88Tested up to: 4.0.0
    9 Stable tag: 1.1.1
     9Stable tag: 1.1.2
    1010License: MIT
    1111
     
    6666== Changelog ==
    6767
     68= 1.1.2 =
     69* Security Hardening
     70
    6871= 1.1.0 =
    6972* Fix XSS Vulnerability
Note: See TracChangeset for help on using the changeset viewer.