PHP Fatal error: Call to undefined method stdClass::saveField()
In administrator/components/com_chronoforums/chronoforums/models/post.php
Can you please advise the fix for this? The email->forum functionality does not work correctly because of this bug and this is vital for me.
Many thanks :-)
Brian
In administrator/components/com_chronoforums/chronoforums/models/post.php
function afterSave(){
if($this->created === true){
$this->Topic->id = $this->data['topic_id'];
$this->Topic->saveField('last_post', $this->id); // << this line
$this->Forum->id = $this->data['forum_id'];
$this->Forum->saveField('last_post', $this->id);
}
}
Can you please advise the fix for this? The email->forum functionality does not work correctly because of this bug and this is vital for me.
Many thanks :-)
Brian