forgot to save a bug fix
This commit is contained in:
parent
b0c7c1162d
commit
cdc2ea2547
2 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
- fixed #11540: Pending version tags are not completed on approval under certain conditions
|
||||
- fixed #11566: Group API: group membership cannot be checked without consideration of expiration dates.
|
||||
- fixed #11567: EMS: Build badge page, ticket tab, pagination
|
||||
- added: a new inbox setting which allows administrators to choose not to send out friend rejection notices
|
||||
- added: a new inbox setting which supresses friend rejection notices
|
||||
|
||||
7.9.4
|
||||
- We're shipping underscore.js now for its suite of extremely handy utility
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ sub execute {
|
|||
while (my $invite = $pending->hashRef) {
|
||||
my $sentOn = WebGUI::DateTime->new($session, $invite->{dateSent});
|
||||
if (DateTime::Duration->compare($now - $sentOn, $outdated) == 1) {
|
||||
WebGUI::Friends->new($session, WebGUI::User->new($session, $invite->{friendId}))->rejectAddRequest($invite->{inviteId},,$session->setting->get("sendRejectNotice"));
|
||||
WebGUI::Friends->new($session, WebGUI::User->new($session, $invite->{friendId}))->rejectAddRequest($invite->{inviteId},$session->setting->get("sendRejectNotice"));
|
||||
}
|
||||
if (time() - $start > $ttl) {
|
||||
$pending->finish;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue