Plugin Directory

Changeset 1110230


Ignore:
Timestamp:
03/11/2015 10:27:27 AM (11 years ago)
Author:
glatze
Message:
  • Fix: Bulk Import didn't work correctly if account suffix is appended to username.

[Issue 0082] http://bt.steindorff.de/view.php?id=0082

Location:
active-directory-integration/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • active-directory-integration/trunk/ad-integration.php

    r1076756 r1110230  
    17101710     *
    17111711     * @param integer $attempts
    1712      * @return integer 3 if $attempts is lower than 1
     1712     * @return integer 3 if $attempts is lower than 0
    17131713     */
    17141714    public function sanitize_max_login_attempts($attempts) {
    17151715        $attempts = intval($attempts);
    1716         if ($attempts < 1) {
     1716        if ($attempts < 0) {
    17171717            $attempts = 3;
    17181718        }
  • active-directory-integration/trunk/readme.txt

    r1076756 r1110230  
    136136* FIX: Fixed a problem with empty usernames. (Thanks to Johnathon Williams for the bug report.)
    137137* FIX: Possible fix for an issue with password decryption. (Thanks to Jan Kutschke for the bug report.)
     138* FIX: Can not set maximum number of login attempts in Brute Force Protection to 0. (Issue #0082. Thanks to Florian Rommel for the bug report.)
    138139
    139140= 1.1.5 =
Note: See TracChangeset for help on using the changeset viewer.