This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.

AlexanderLiebrecht
AlexanderLiebrecht

Hello Community, I have a problem and although an error message is displayed when you call me the blog posts. It is the /storage/cms/cache/19/56/post.htm.php line 5 And standing in line 5:

function onEnd () {$ this- & gt; page- & gt; title = $ this- & gt; post & gt; title; }

How can I fix it again. For any help I would be grateful.

Last updated

Scott
Scott

Judging by your escaped code, it looks like this is your onEnd function

function onEnd()
{
    $this->page->title = $this->post>title;
}

In which case, you're missing a hyphen after "post". It should be...

function onEnd()
{
    $this->page->title = $this->post->title;
}
AlexanderLiebrecht
AlexanderLiebrecht

Thanks, that helped me and now everything is back in order.

1-3 of 3

You cannot edit posts or make replies: the forum has moved to talk.octobercms.com.