MyBB Community Forums

Full Version: I keep getting a syntax error 3 times
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Parse error: syntax error, unexpected '<', expecting '}' in /home4/rarememe/public_html/inc/functions_post.php(471) : eval()'d code on line 3

the same error shows up every time I open a thread. Please someone explain this to me
check content of postbit_author_user template of the theme
{$lang->postbit_posts} {$post['postnum']}<br />
{$lang->postbit_joined} {$post['userregdate']<br />
{$post['replink']}{$post['profilefield']}{$post['warninglevel']}

I solved it by adding spaces just copied from another themes template thanks!
You're missing a } after {$post['userregdate']
edit : delayed response

{$post['userregdate'] --> end brace (}) is missing --- should be {$post['userregdate']}