Quote:
Originally Posted by Black Snow
Thanks for the example. Makes me understand more now.
--------------- Added [DATE]1409646066[/DATE] at [TIME]1409646066[/TIME] ---------------
I tried doing this but it won't work if I access the info.php page without the query on the end of the URL:
Code:
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR);
$do = $vbulletin->GPC['do'];
if (!isset($do))
//default value
$do = "siterules";
//Use as http:/site.com/info.php?do=siterules
if ($do == "siterules") {
$pagetitle = 'General Site Rules';
$templater = vB_Template::create('siterules');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
$templater->register('custom_nav', $custom_nav);
print_output($templater->render());
exit;
}
|
Try replacing this
PHP Code:
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR);
$do = $vbulletin->GPC['do'];
if (!isset($do))
//default value
$do = "siterules";
With this
PHP Code:
if (!isset($_REQUEST['do'])
$_REQUEST['do'] = 'siterules';
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR);
$do = $vbulletin->GPC['do'];