Quote:
Originally Posted by ozzy47
Warning: Assigning the return value of new by reference is deprecated in ....Bla Bla Bla
Try this fix, (Untested)
Edit the plugin titled, Templating Starting under the group, News & Announcements
Replace everything in there with this:
Code:
if($vbulletin->options['enable_lns'] AND in_array($vbulletin->userinfo['usergroupid'], explode(',', $vbulletin->options['lns_ug'])))
{
$lns=array();
$lns['title'] = $vbulletin->options['lns_title'];
$lns['text'] = $vbulletin->options['lns_text'];
$templater = vB_Template::create('forumhome_lastest_news');
$templater->register('lns',$lns);
if($vbulletin->options['enable_lns_place'])
{
$template_hook['forumhome_above_forums'] .= $templater->render();
}
else
{
$template_hook['news'] .= $templater->render();
}
}
|
GREAT WORK OZZY47 - that did indeed fix it

:up:
**NOTE above fix from OZZY47 for the 4.2.2 patch upgrade of vbulletin