PDA

View Full Version : Need a tut


UltimateOreo!
03-27-2007, 11:03 PM
All i really need is some code how to fetch a template, and all the vbulletin code built in would be great, the tut already posted on here no longer works. All I need is to fetch a template, but I would like it on a vb page.

da420
03-27-2007, 11:11 PM
This, taken from this thread (https://vborg.vbsupport.ru/showthread.php?t=62164), works for me.

if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}

UltimateOreo!
03-27-2007, 11:21 PM
Thats the exact thing that I was talking about, All I come up with is a blank page. Anyway, ill just remove some code from a vbulletin 3.6.5 code and stick this is there. Thanks anyway.

Ok, what I am actually asking is I need a re-write of that code in https://vborg.vbsupport.ru/showthread.php?t=62164 that will work with 3.6.5, the page that I used on that tut turns out blank.

Nevermind, this worked like a charm-https://vborg.vbsupport.ru/showthread.php?t=88565