summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f90f483)
raw | patch | inline | side by side (parent: f90f483)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 18 Nov 2010 11:17:10 +0000 (11:17 +0000) | ||
committer | hickert <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
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20267 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/functions.inc | patch | blob | history |
index 1347ffff10d5974c37fa6235195a0ffa361af309..516ac61bd3a1153c66050dd035957f938b576b48 100644 (file)
// 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.