<?php
function hacked_by_Killer()
{
/*echo "Hacked by Killer";
ex_foot();*/
access_denied(1, "Взлом не удался!");
ex_foot();
}
// Загрузка остальных функций из папки "sys/fnc"
$opdirbase = opendir(H.'system/functions');
while ($filebase = readdir($opdirbase))
{
if (preg_match('#.php$#i',$filebase)) // если php файл
{
include(H.'system/functions/'.$filebase);
}
}
?>