Only convert to seconds once in CleanLoginHistory.
This commit is contained in:
parent
f2571a4465
commit
ec707d8041
2 changed files with 8 additions and 6 deletions
|
|
@ -2,17 +2,19 @@
|
||||||
- fix: Duplicate Metadata (perlDreamer Consulting, LLC)
|
- fix: Duplicate Metadata (perlDreamer Consulting, LLC)
|
||||||
- fix: calender (thanks to TjECC for suggesting a very elegant way to fix
|
- fix: calender (thanks to TjECC for suggesting a very elegant way to fix
|
||||||
this)
|
this)
|
||||||
http://www.plainblack.com/bugs/tracker/calender#TKMNSvU-0qlmsv3aNk5W7g
|
http://www.plainblack.com/bugs/tracker/calender#TKMNSvU-0qlmsv3aNk5W7g
|
||||||
Display of events which span weeks, months and/or days
|
|
||||||
- add: User Defined Fields in Posts Edit Form can now be used as hidden form
|
- add: User Defined Fields in Posts Edit Form can now be used as hidden form
|
||||||
elements
|
elements
|
||||||
- fix: Collaboration System not deleting getCSMail workflows (perlDreamer Consulting, LLC)
|
- fix: Collaboration System not deleting getCSMail workflows (perlDreamer Consulting, LLC)
|
||||||
- fix: Calendar event edit should inherit (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)
|
- 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)
|
- 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
|
7.3.13
|
||||||
- fix: Stale pages after user login
|
- fix: Stale pages after user login
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ See WebGUI::Workflow::Activity::execute() for details.
|
||||||
|
|
||||||
sub execute {
|
sub execute {
|
||||||
my $self = shift;
|
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;
|
return $self->COMPLETE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue