Plugin Directory

Changeset 379530


Ignore:
Timestamp:
05/01/2011 05:00:47 PM (15 years ago)
Author:
wpsec
Message:

tagging version 2.2.1

Location:
login-lock
Files:
2 edited
6 copied

Legend:

Unmodified
Added
Removed
  • login-lock/tags/2.2.1/loginlock.php

    r378898 r379530  
    33Plugin Name: Login Lock
    44Plugin URI: https://wpsecurity.net/wordpress-security-login-lock/
    5 Version: v2.2
     5Version: v2.2.1
    66Author: Mark Edwards / WPSecurity.net
    77Author URI: https://wpsecurity.net
     
    419419        if (!$user) return;
    420420
     421        if (!isset($user->user_pass)) return;
     422
    421423        $oh = get_user_meta( $user->ID, 'll_old_hashes', true);
    422424
     
    891893        if ('' == $pass2) $pass2 = $_POST['pass2'];
    892894
    893         $msg = '';
    894 
    895         $ll_psw_check_failed = '';
     895        if ('' == $pass1 && '' == $pass2) return;
    896896
    897897        if ( !isset( $pass1 ) || !isset( $pass2 ) )
    898898            return;
     899
     900        $msg = '';
     901
     902        $ll_psw_check_failed = '';
     903
    899904
    900905        $msg = $this->ll_check_psw_strength( $pass1 );
  • login-lock/tags/2.2.1/readme.txt

    r378898 r379530  
    55Requires at least: 2.5
    66Tested up to: 3.1.2
    7 Stable Tag: 2.2
     7Stable Tag: 2.2.1
    88
    99Enforces strong password policies; provides emergency lockdown features; monitors login attempts; blocks hacker IP addresses; and logs out idle users.
     
    6868== Changelog ==
    6969
     70= 2.2.1 =
     71* Fixed bug in editing user profiles - when password isn't being changed an error occurred.
     72
     73
    7074= 2.2 =
    7175* Minor bug fix, added base functionality for notifications and future features
     
    7680== Upgrade Notice ==
    7781
     82= 2.2.1 =
     83* Fixed bug in editing user profiles - when password isn't being changed an error occurred.
     84
     85
    7886= 2.2 =
    79 Minor bug fix related to user profile editing, added base functionality for notifications and future features
     87* Minor bug fix, added base functionality for notifications and future features
    8088
     89= 2.1 =
     90* Minor bug fix
     91
  • login-lock/trunk/loginlock.php

    r378898 r379530  
    33Plugin Name: Login Lock
    44Plugin URI: https://wpsecurity.net/wordpress-security-login-lock/
    5 Version: v2.2
     5Version: v2.2.1
    66Author: Mark Edwards / WPSecurity.net
    77Author URI: https://wpsecurity.net
     
    419419        if (!$user) return;
    420420
     421        if (!isset($user->user_pass)) return;
     422
    421423        $oh = get_user_meta( $user->ID, 'll_old_hashes', true);
    422424
     
    891893        if ('' == $pass2) $pass2 = $_POST['pass2'];
    892894
    893         $msg = '';
    894 
    895         $ll_psw_check_failed = '';
     895        if ('' == $pass1 && '' == $pass2) return;
    896896
    897897        if ( !isset( $pass1 ) || !isset( $pass2 ) )
    898898            return;
     899
     900        $msg = '';
     901
     902        $ll_psw_check_failed = '';
     903
    899904
    900905        $msg = $this->ll_check_psw_strength( $pass1 );
  • login-lock/trunk/readme.txt

    r378898 r379530  
    55Requires at least: 2.5
    66Tested up to: 3.1.2
    7 Stable Tag: 2.2
     7Stable Tag: 2.2.1
    88
    99Enforces strong password policies; provides emergency lockdown features; monitors login attempts; blocks hacker IP addresses; and logs out idle users.
     
    6868== Changelog ==
    6969
     70= 2.2.1 =
     71* Fixed bug in editing user profiles - when password isn't being changed an error occurred.
     72
     73
    7074= 2.2 =
    7175* Minor bug fix, added base functionality for notifications and future features
     
    7680== Upgrade Notice ==
    7781
     82= 2.2.1 =
     83* Fixed bug in editing user profiles - when password isn't being changed an error occurred.
     84
     85
    7886= 2.2 =
    79 Minor bug fix related to user profile editing, added base functionality for notifications and future features
     87* Minor bug fix, added base functionality for notifications and future features
    8088
     89= 2.1 =
     90* Minor bug fix
     91
Note: See TracChangeset for help on using the changeset viewer.