Quote:
Originally Posted by DreadsUK
Which one? its confusing.
|
This one:
Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
define('THIS_SCRIPT', '404_error');
define('CSRF_PROTECTION', true);
define('CSRF_SKIP_LIST', '');
define('VB_ENTRY', '404.php');
$phrasegroups = array();
$specialtemplates = array();
$globaltemplates = array('404_error',
);
$actiontemplates = array();
require_once('./global.php');
$navbar = render_navbar_template(construct_navbits($navbits));
$templater = vB_Template::create('404_error');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
print_output($templater->render());
?>