Plugin Directory

Changeset 448467


Ignore:
Timestamp:
10/07/2011 02:58:50 PM (14 years ago)
Author:
johanee
Message:

Forward-merge changes for 1.6.2 to trunk beta

Location:
limit-login-attempts/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • limit-login-attempts/trunk/limit-login-attempts-admin.php

    r428626 r448467  
    211211    /* Should we clear log? */
    212212    if (isset($_POST['clear_log'])) {
    213         update_option('limit_login_logged', array());
     213        limit_login_store_array('logged', array());
    214214        limit_login_admin_message(__('Cleared IP log', 'limit-login-attempts'));
    215215    }
  • limit-login-attempts/trunk/limit-login-attempts.php

    r428626 r448467  
    7272 */
    7373
    74 limit_login_setup();
     74add_action('init', 'limit_login_setup');
    7575
    7676
     
    810810        return $a;
    811811
    812     $a = array();
    813     $autoload = limit_login_is_array_autoload($array_name) ? 'yes' : 'no';
    814     add_option($real_array_name, $a, '', $autoload);
    815 
    816     return $a;
     812    return array();
    817813}
    818814
  • limit-login-attempts/trunk/readme.txt

    r428626 r448467  
    1111
    1212THIS IS A BETA VERSION!
     13
     14Additional security features for many parts of user handling: login, signup, password reset and more.
    1315
    1416Limit the number of login attempts possible both through normal login as well as using auth cookies.
     
    8587Truly advanced users can edit the 'disable_pwd_reset' entry in the serialized array.
    8688
     89Plugin options are stored in `limit_login_options` option in the wordpress options table. You can remove this in a default setup using: `DELETE FROM wp_options WHERE option_name = 'limit_login_options'`. PLEASE BE CAREFUL OR YOU WILL SCREW UP YOUR WORDPRESS INSTALL!
     90
     91Truly advanced users can edit the 'disable_pwd_reset' entry in the serialized array of course.
     92
    8793== Screenshots ==
    8894
     
    113119* Update screenshots
    114120* Update site
     121
     122* track registrations
     123* track last login
    115124
    116125== Change Log ==
     
    123132* Only autoload the necessary option table entries
    124133* Log time of last lockout for each IP in log; keep track of last increase + last clear for statistics
    125 * Forward-merged changes from versions 1.5 - 1.6.1
     134* Forward-merged changes from versions 1.5 - 1.6.2
    126135* Move translations to separate directory
    127136* Updated Swedish translation
     
    148157* filter registration error messages to avoid possible way to brute force find user login name
    149158* list of privileged users show which login names can be discovered from user displayname, nickname or "url name"/nicename
     159
     160= 1.6.2 =
     161* Fix bug where log would not get updated after it had been cleared
     162* Do plugin setup in 'init' action
     163* Small update to Spanish translation file, thanks to Marcelo Pedra
     164* Tested against WordPress 3.2.1
     165
     166= 1.6.1 =
     167* (WordPress 3.0+) An invalid cookie can sometimes get sent multiple times before it gets cleared, resulting in multiple failed attempts or even a lockout from a single invalid cookie. Store the latest failed cookie to make sure we only count it as one failed attempt
     168* Define "Text Domain" correctly
     169* Include correct Dutch tranlation file. Thanks to Martin1 for noticing. Thanks again to Bjorn Wijers for the translation
     170* Updated POT file for this version
     171* Tested against WordPress 3.1-RC4
    150172
    151173= 1.6.0 =
Note: See TracChangeset for help on using the changeset viewer.