$doc = JFactory::getDocument();
$doc->setTitle($this->error->getCode() . ' - '.$this->title);
// load and inititialize gantry class
global $gantry;
require_once(dirname(__FILE__) . '/lib/gantry/gantry.php');
$gantry->init();
$doc = JFactory::getDocument();
$doc->setTitle($this->error->getCode() . ' - '.$this->title);
// Gantry 404 error fix
$_format = JFactory::getApplication()->input->get('format', 'html');
if ($_format != "html") {
header("HTTP/1.0 404 Not Found");
die();
}
// End Gantry 404 Error Fix
header("HTTP/1.0 404 Not Found");
print "404 - Not Found";
die();
The following users have thanked you: MrT, Daniel Benson
Time to create page: 0.057 seconds