From dcc1e2d46279631a015dc59c5bc3ab663663b782 Mon Sep 17 00:00:00 2001 From: Matthew Wilson Date: Tue, 17 May 2005 17:28:41 +0000 Subject: [PATCH] - fix [ 1199193 ] lastReply.url not complete (again) --- lib/WebGUI/Asset/Post/Thread.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Asset/Post/Thread.pm b/lib/WebGUI/Asset/Post/Thread.pm index ff74fa9e0..dce954623 100644 --- a/lib/WebGUI/Asset/Post/Thread.pm +++ b/lib/WebGUI/Asset/Post/Thread.pm @@ -134,7 +134,7 @@ sub getLastPost { my $lastPostId = $self->get("lastPostId"); my $lastPost; if ($lastPostId) { - $lastPost = WebGUI::Asset::Post::Thread->new($lastPostId); + $lastPost = WebGUI::Asset::Post->new($lastPostId); } return $lastPost if (defined $lastPost); return $self;