Next try to update the last post field in ForumTopic and ForumTopicGroup

This commit is contained in:
Polonkai Gergely
2012-07-09 13:37:01 +02:00
parent de42154b51
commit 0fad11ffd0
3 changed files with 8 additions and 7 deletions

View File

@@ -283,9 +283,10 @@ class ForumTopic
* @param KekRozsak\FrontBundle\Entity\ForumPost $lastPost
* @return ForumTopic
*/
public function setLastPost(\KekRozsak\FrontBundle\Entity\ForumPost $lastPost = null)
public function setLastPost(\KekRozsak\FrontBundle\Entity\ForumPost $lastPost)
{
$this->lastPost = $lastPost;
$this->topic_group->setLastPost($lastPost);
return $this;
}