Changeset 1110230
- Timestamp:
- 03/11/2015 10:27:27 AM (11 years ago)
- Location:
- active-directory-integration/trunk
- Files:
-
- 2 edited
-
ad-integration.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
active-directory-integration/trunk/ad-integration.php
r1076756 r1110230 1710 1710 * 1711 1711 * @param integer $attempts 1712 * @return integer 3 if $attempts is lower than 11712 * @return integer 3 if $attempts is lower than 0 1713 1713 */ 1714 1714 public function sanitize_max_login_attempts($attempts) { 1715 1715 $attempts = intval($attempts); 1716 if ($attempts < 1) {1716 if ($attempts < 0) { 1717 1717 $attempts = 3; 1718 1718 } -
active-directory-integration/trunk/readme.txt
r1076756 r1110230 136 136 * FIX: Fixed a problem with empty usernames. (Thanks to Johnathon Williams for the bug report.) 137 137 * 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.) 138 139 139 140 = 1.1.5 =
Note: See TracChangeset
for help on using the changeset viewer.