diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 51e144138..5cbb2fa97 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -2,17 +2,19 @@ - fix: Duplicate Metadata (perlDreamer Consulting, LLC) - fix: calender (thanks to TjECC for suggesting a very elegant way to fix this) - http://www.plainblack.com/bugs/tracker/calender#TKMNSvU-0qlmsv3aNk5W7g - Display of events which span weeks, months and/or days + http://www.plainblack.com/bugs/tracker/calender#TKMNSvU-0qlmsv3aNk5W7g - add: User Defined Fields in Posts Edit Form can now be used as hidden form elements - fix: Collaboration System not deleting getCSMail workflows (perlDreamer Consulting, LLC) - fix: Calendar event edit should inherit (perlDreamer Consulting, LLC) - http://www.plainblack.com/bugs/tracker/calendar-event-edit-should-inherit + http://www.plainblack.com/bugs/tracker/calendar-event-edit-should-inherit - fix: Calendar: recurrance generates uncommitted version tag (perlDreamer Consulting, LLC) - http://www.plainblack.com/bugs/tracker/calendar-recurrance-generates-uncommitted-version-tag + http://www.plainblack.com/bugs/tracker/calendar-recurrance-generates-uncommitted-version-tag - fix: Wrong location after login (thanks to Michelle Lamar) - http://www.plainblack.com/bugs/tracker/wrong-location-after-login#1gVCQqlv41L9gQ3kv4Eg-g + http://www.plainblack.com/bugs/tracker/wrong-location-after-login#1gVCQqlv41L9gQ3kv4Eg-g + - fix: Clear Login History period is calculated 24 times longer if it is set + in months (thanks to Todor Kouyoumdjiev ECoCoMS Ltd.) + http://www.plainblack.com/bugs/tracker/clear-login-history-period-is-calculated-24-times-longer-if-it-is-set-in-months#VomZpVCroSN6WoQ-UYo7Xw 7.3.13 - fix: Stale pages after user login diff --git a/lib/WebGUI/Workflow/Activity/CleanLoginHistory.pm b/lib/WebGUI/Workflow/Activity/CleanLoginHistory.pm index fb7c2bad3..2b77140b9 100644 --- a/lib/WebGUI/Workflow/Activity/CleanLoginHistory.pm +++ b/lib/WebGUI/Workflow/Activity/CleanLoginHistory.pm @@ -75,7 +75,7 @@ See WebGUI::Workflow::Activity::execute() for details. sub execute { my $self = shift; - $self->session->db->write("delete from userLoginLog where timeStamp < ?", [(time()-(86400*$self->get("ageToDelete")))]); + $self->session->db->write("delete from userLoginLog where timeStamp < ?", [(time()-($self->get("ageToDelete")))]); return $self->COMPLETE; }