MyBB Community Forums

Full Version: Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
not sure about exact cause for the error. however below may be rectified

in the php file:
$title = $mybb->settings["shop_title"]; ==> $title = $mybb->settings['shop_title'];

in the template:
{$mybbsettings->['shop_title']} ==> {$mybb->settings['shop_title']}
(2016-07-08, 12:59 PM).m. Wrote: [ -> ]in the template:
{$mybbsettings->['shop_title']} ==> {$mybb->settings['shop_title']}

Ah that'll probably be it, good spot.
Pages: 1 2