Changeset 379530
- Timestamp:
- 05/01/2011 05:00:47 PM (15 years ago)
- Location:
- login-lock
- Files:
-
- 2 edited
- 6 copied
-
tags/2.2.1 (copied) (copied from login-lock/trunk)
-
tags/2.2.1/css/wpsec-login.css (copied) (copied from login-lock/trunk/css/wpsec-login.css)
-
tags/2.2.1/loginlock.php (copied) (copied from login-lock/trunk/loginlock.php) (3 diffs)
-
tags/2.2.1/loginlock_psws.php (copied) (copied from login-lock/trunk/loginlock_psws.php)
-
tags/2.2.1/plugin_tools.php (copied) (copied from login-lock/trunk/plugin_tools.php)
-
tags/2.2.1/readme.txt (copied) (copied from login-lock/trunk/readme.txt) (3 diffs)
-
trunk/loginlock.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
login-lock/tags/2.2.1/loginlock.php
r378898 r379530 3 3 Plugin Name: Login Lock 4 4 Plugin URI: https://wpsecurity.net/wordpress-security-login-lock/ 5 Version: v2.2 5 Version: v2.2.1 6 6 Author: Mark Edwards / WPSecurity.net 7 7 Author URI: https://wpsecurity.net … … 419 419 if (!$user) return; 420 420 421 if (!isset($user->user_pass)) return; 422 421 423 $oh = get_user_meta( $user->ID, 'll_old_hashes', true); 422 424 … … 891 893 if ('' == $pass2) $pass2 = $_POST['pass2']; 892 894 893 $msg = ''; 894 895 $ll_psw_check_failed = ''; 895 if ('' == $pass1 && '' == $pass2) return; 896 896 897 897 if ( !isset( $pass1 ) || !isset( $pass2 ) ) 898 898 return; 899 900 $msg = ''; 901 902 $ll_psw_check_failed = ''; 903 899 904 900 905 $msg = $this->ll_check_psw_strength( $pass1 ); -
login-lock/tags/2.2.1/readme.txt
r378898 r379530 5 5 Requires at least: 2.5 6 6 Tested up to: 3.1.2 7 Stable Tag: 2.2 7 Stable Tag: 2.2.1 8 8 9 9 Enforces strong password policies; provides emergency lockdown features; monitors login attempts; blocks hacker IP addresses; and logs out idle users. … … 68 68 == Changelog == 69 69 70 = 2.2.1 = 71 * Fixed bug in editing user profiles - when password isn't being changed an error occurred. 72 73 70 74 = 2.2 = 71 75 * Minor bug fix, added base functionality for notifications and future features … … 76 80 == Upgrade Notice == 77 81 82 = 2.2.1 = 83 * Fixed bug in editing user profiles - when password isn't being changed an error occurred. 84 85 78 86 = 2.2 = 79 Minor bug fix related to user profile editing, added base functionality for notifications and future features87 * Minor bug fix, added base functionality for notifications and future features 80 88 89 = 2.1 = 90 * Minor bug fix 91 -
login-lock/trunk/loginlock.php
r378898 r379530 3 3 Plugin Name: Login Lock 4 4 Plugin URI: https://wpsecurity.net/wordpress-security-login-lock/ 5 Version: v2.2 5 Version: v2.2.1 6 6 Author: Mark Edwards / WPSecurity.net 7 7 Author URI: https://wpsecurity.net … … 419 419 if (!$user) return; 420 420 421 if (!isset($user->user_pass)) return; 422 421 423 $oh = get_user_meta( $user->ID, 'll_old_hashes', true); 422 424 … … 891 893 if ('' == $pass2) $pass2 = $_POST['pass2']; 892 894 893 $msg = ''; 894 895 $ll_psw_check_failed = ''; 895 if ('' == $pass1 && '' == $pass2) return; 896 896 897 897 if ( !isset( $pass1 ) || !isset( $pass2 ) ) 898 898 return; 899 900 $msg = ''; 901 902 $ll_psw_check_failed = ''; 903 899 904 900 905 $msg = $this->ll_check_psw_strength( $pass1 ); -
login-lock/trunk/readme.txt
r378898 r379530 5 5 Requires at least: 2.5 6 6 Tested up to: 3.1.2 7 Stable Tag: 2.2 7 Stable Tag: 2.2.1 8 8 9 9 Enforces strong password policies; provides emergency lockdown features; monitors login attempts; blocks hacker IP addresses; and logs out idle users. … … 68 68 == Changelog == 69 69 70 = 2.2.1 = 71 * Fixed bug in editing user profiles - when password isn't being changed an error occurred. 72 73 70 74 = 2.2 = 71 75 * Minor bug fix, added base functionality for notifications and future features … … 76 80 == Upgrade Notice == 77 81 82 = 2.2.1 = 83 * Fixed bug in editing user profiles - when password isn't being changed an error occurred. 84 85 78 86 = 2.2 = 79 Minor bug fix related to user profile editing, added base functionality for notifications and future features87 * Minor bug fix, added base functionality for notifications and future features 80 88 89 = 2.1 = 90 * Minor bug fix 91
Note: See TracChangeset
for help on using the changeset viewer.