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

@ -170,7 +170,7 @@ sub commit {
my $u = WebGUI::User->new($self->session, $self->get("ownerUserId"));
$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);
}
}