CS Thread sort on last post reply is now working correctly.

This commit is contained in:
Kaleb Murphy 2008-08-13 16:09:51 +00:00
parent 7e37c6aec4
commit f2cacdf4ac
2 changed files with 2 additions and 1 deletions

View file

@ -18,6 +18,7 @@
- fixed: Form CheckList select all button now functions properly - fixed: Form CheckList select all button now functions properly
- fixed: Gallery slideshow JS now has better control over the buttons - fixed: Gallery slideshow JS now has better control over the buttons
- fixed: The bug enigmatically named "product". - fixed: The bug enigmatically named "product".
- fixed: CS Thread sort on last post reply is now working correctly.
7.5.19 7.5.19
- fixed: paginator doesn't show correct number of page links with a limit applied - fixed: paginator doesn't show correct number of page links with a limit applied

View file

@ -170,7 +170,7 @@ sub commit {
my $u = WebGUI::User->new($self->session, $self->get("ownerUserId")); my $u = WebGUI::User->new($self->session, $self->get("ownerUserId"));
$u->karma($self->getThread->getParent->get("karmaPerPost"), $self->getId, "Collaboration post"); $u->karma($self->getThread->getParent->get("karmaPerPost"), $self->getId, "Collaboration post");
} }
$self->getThread->incrementReplies($self->get("revisionDate"),$self->getId) if ($self->isReply); $self->getThread->incrementReplies($self->get("revisionDate"),$self->getId);# if ($self->isReply);
} }
} }