Файл: adm_panel/info.php
Строк: 46
<?
include_once '../sys/inc/start.php';
include_once '../sys/inc/compress.php';
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/ipua.php';
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/adm_check.php';
include_once '../sys/inc/user.php';
user_access('adm_info',null,'index.php?'.SID);
adm_check();
$set['title']='CHMOD';
include_once '../sys/inc/thead.php';
top();
err();
include_once H.'sys/inc/chmod_test.php';
if (isset($err))
{
if (is_array($err))
{
foreach ($err as $key=>$value) {
echo "<div class='err'>$value</div>n";
}
}
else
echo "<div class='err'>$err</div>n";
}
if (user_access('adm_panel_show')){
echo "<div class='foot1'>n";
icon_adm_panel();echo "<a href='/adm_panel/'>Панель управления</a><br />n";
echo "</div>n";
}
include_once '../sys/inc/tfoot.php';
?>