Файл: chat/index.php
Строк: 46
<?
include_once '../sys/inc/start.php';
include_once '../sys/inc/compress.php';
include_once '../sys/inc/sess.php';
include_once '../sys/inc/home.php';
include_once '../sys/inc/settings.php';
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/ipua.php';
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/user.php';
$func = (isset($_GET['func']) ? text($_GET['func']) : 'index');
if (is_file('inc/' . $func . '.php')) {
require 'inc/' . $func . '.php';
} else {
$set['title'] = __('Ошибка 404 страница не найдена');
include_once H.'sys/inc/thead.php';
title();
aut();
?>
<div class="mess">
<?= __('К сожалению, запрашиваемый вами плагин не найден!<br />Вернитесь на <a href="?">главную страницу чата</a>, и попробуйте зайти на интересующий вас раздел.')?>
</div>
<?
}
include_once '../sys/inc/tfoot.php';
?>