Fixed a bug where isCurrentPost was not set correctly

This commit is contained in:
Martin Kamerbeek 2007-01-22 20:25:44 +00:00
parent 014e40a005
commit 3b08bbf7af
3 changed files with 5 additions and 2 deletions

View file

@ -1261,7 +1261,7 @@ sub www_showConfirmation {
sub www_view {
my $self = shift;
$self->incrementViews;
return $self->getThread->www_view;
return $self->getThread->www_view($self);
}