Code

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

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

gosa-core/include/functions.inc

index 8723e01ad2e10aac817d402d229822bdddaa8f73..f49f98e5c43990a1f5c4f6d5810c4b9e8f081edd 100644 (file)
@@ -699,7 +699,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.