Quote:
Originally Posted by Lynne
And what code are you using to preregister it and where?
|
Hi Lynn,
The block of code dealing with the template now looks like this:
Code:
$templater = vB_Template::create('mytemplate');
$templater->register('optionvalue', $optionvalue);
$templater->register('optiontitle', $optiontitle);
$templater->register('optionclass', $optionclass);
$templater->register('optionselected', $optionselected);
$templater->register('show', $show);
$templatevalues['$optoutforumbits'] = $templater->render();
vB_Template::preRegister('option', $templatevalues);
I also tried using $templater = vB_Template::create('option'); by the way. Also no luck.
The only other change I made was to replace $vbulletin->userinfo with $bbuserinfo. Other than that, the code is the same as above.