PDA

View Full Version : Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM


James Birkett
12-15-2009, 12:06 PM
On line 362. I know that it's saying "unexpected double-colon", however the double-colon isn't unexpected.
$templater->vB_Template::create('shoutbox_editor');

This seems to be the case for all of my vB_Template::create codes.

ForumsMods
12-15-2009, 12:38 PM
It should be:
$templater = vB_Template::create('shoutbox_editor');

James Birkett
12-15-2009, 01:03 PM
Of course! Why didn't I notice that!

Thanks vB Style!