Code

Updated account expiration detection closes #1108
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 18 Nov 2010 11:17:10 +0000 (11:17 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 18 Nov 2010 11:17:10 +0000 (11:17 +0000)
Thanks to 'cs'

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20267 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/functions.inc

index 1347ffff10d5974c37fa6235195a0ffa361af309..516ac61bd3a1153c66050dd035957f938b576b48 100644 (file)
@@ -711,7 +711,7 @@ function ldap_expired_account($config, $userdn, $uid)
     // An account is locked/expired once its expiration date has reached (shadowExpire).
     // If the optional attribute (shadowInactive) is set, we've to postpone
     //  the account expiration by the amount of days specified in (shadowInactive).
-    if($shadowExpire != null && $shadowExpire >= $current){
+    if($shadowExpire != null && $shadowExpire <= $current){
 
         // The account seems to be expired, but we've to check 'shadowInactive' additionally.
         // ShadowInactive specifies an amount of days we've to reprieve the user.