11 lines
223 B
PHP
11 lines
223 B
PHP
|
<?php
|
||
|
|
||
|
header('Content-Type: text/html; charset=utf-8');
|
||
|
date_default_timezone_set('Europe/Moscow');
|
||
|
|
||
|
include 'inc/class_SECUR.php';
|
||
|
$cSECUR = new class_SECUR();
|
||
|
|
||
|
include 'inc/smarty.php';
|
||
|
|
||
|
$smarty->display('tpl_404.html');
|