Changeset 1785293
- Timestamp:
- 12/12/2017 10:49:36 AM (8 years ago)
- Location:
- clockwork-two-factor-authentication
- Files:
-
- 3 edited
- 9 copied
-
tags/1.1.2 (copied) (copied from clockwork-two-factor-authentication/trunk)
-
tags/1.1.2/clockwork-two-factor.php (modified) (5 diffs)
-
tags/1.1.2/lib/class-clockwork-plugin.php (copied) (copied from clockwork-two-factor-authentication/trunk/lib/class-clockwork-plugin.php)
-
tags/1.1.2/lib/clockwork/class-Clockwork.php (copied) (copied from clockwork-two-factor-authentication/trunk/lib/clockwork/class-Clockwork.php)
-
tags/1.1.2/main.php (copied) (copied from clockwork-two-factor-authentication/trunk/main.php)
-
tags/1.1.2/readme.txt (copied) (copied from clockwork-two-factor-authentication/trunk/readme.txt) (2 diffs)
-
tags/1.1.2/templates/clockwork-options.php (copied) (copied from clockwork-two-factor-authentication/trunk/templates/clockwork-options.php)
-
tags/1.1.2/templates/clockwork-test-message.php (copied) (copied from clockwork-two-factor-authentication/trunk/templates/clockwork-test-message.php)
-
tags/1.1.2/templates/two-factor-options.php (copied) (copied from clockwork-two-factor-authentication/trunk/templates/two-factor-options.php)
-
tags/1.1.2/templates/user-options.php (copied) (copied from clockwork-two-factor-authentication/trunk/templates/user-options.php)
-
trunk/clockwork-two-factor.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
clockwork-two-factor-authentication/tags/1.1.2/clockwork-two-factor.php
r981582 r1785293 4 4 Plugin URI: http://wordpress.org/extend/plugins/clockwork-two-factor/ 5 5 Description: Proper security for your Wordpress site. Text message-based two factor authentication for logins. 6 Version: 1. 0.26 Version: 1.1.2 7 7 Author: Clockwork 8 8 Author URI: http://www.clockworksms.com/ 9 9 */ 10 10 11 11 /* Copyright 2013, Mediaburst Limited. 12 12 … … 39 39 $versions = array_reverse( $versions ); 40 40 $first_plugin = reset( $versions ); 41 41 42 42 // Require Clockwork plugin architecture 43 43 if( !class_exists( 'Clockwork_Plugin' ) ) { … … 52 52 foreach( $GLOBALS['clockwork_plugins'] as $plugin => $version ) { 53 53 preg_match( '/([0-9]+)\./', $version, $matches ); 54 54 55 55 if( intval( $matches[1] ) < $major_version ) { 56 56 // If it's a major version behind, automatically deactivate it … … 59 59 $plugin_data = get_plugin_data( $plugin_path ); 60 60 deactivate_plugins( $plugin_path ); 61 61 62 62 // Output a message to tell the admin what's going on 63 63 $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>'; … … 66 66 require_once( dirname( dirname( __FILE__ ) ) . '/' . $plugin . '/main.php' ); 67 67 } 68 68 69 69 } 70 70 } 71 71 72 72 } 73 73 -
clockwork-two-factor-authentication/tags/1.1.2/readme.txt
r1781424 r1785293 7 7 Requires at least: 3.0.0 8 8 Tested up to: 4.0.0 9 Stable tag: 1.1. 19 Stable tag: 1.1.2 10 10 License: MIT 11 11 … … 66 66 == Changelog == 67 67 68 = 1.1.2 = 69 * Security Hardening 70 68 71 = 1.1.0 = 69 72 * Fix XSS Vulnerability -
clockwork-two-factor-authentication/trunk/clockwork-two-factor.php
r981582 r1785293 4 4 Plugin URI: http://wordpress.org/extend/plugins/clockwork-two-factor/ 5 5 Description: Proper security for your Wordpress site. Text message-based two factor authentication for logins. 6 Version: 1. 0.26 Version: 1.1.2 7 7 Author: Clockwork 8 8 Author URI: http://www.clockworksms.com/ 9 9 */ 10 10 11 11 /* Copyright 2013, Mediaburst Limited. 12 12 … … 39 39 $versions = array_reverse( $versions ); 40 40 $first_plugin = reset( $versions ); 41 41 42 42 // Require Clockwork plugin architecture 43 43 if( !class_exists( 'Clockwork_Plugin' ) ) { … … 52 52 foreach( $GLOBALS['clockwork_plugins'] as $plugin => $version ) { 53 53 preg_match( '/([0-9]+)\./', $version, $matches ); 54 54 55 55 if( intval( $matches[1] ) < $major_version ) { 56 56 // If it's a major version behind, automatically deactivate it … … 59 59 $plugin_data = get_plugin_data( $plugin_path ); 60 60 deactivate_plugins( $plugin_path ); 61 61 62 62 // Output a message to tell the admin what's going on 63 63 $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>'; … … 66 66 require_once( dirname( dirname( __FILE__ ) ) . '/' . $plugin . '/main.php' ); 67 67 } 68 68 69 69 } 70 70 } 71 71 72 72 } 73 73 -
clockwork-two-factor-authentication/trunk/readme.txt
r1781424 r1785293 7 7 Requires at least: 3.0.0 8 8 Tested up to: 4.0.0 9 Stable tag: 1.1. 19 Stable tag: 1.1.2 10 10 License: MIT 11 11 … … 66 66 == Changelog == 67 67 68 = 1.1.2 = 69 * Security Hardening 70 68 71 = 1.1.0 = 69 72 * Fix XSS Vulnerability
Note: See TracChangeset
for help on using the changeset viewer.