Файл: system/modules/profile_ban.php
Строк: 22
<?php
/*
Appointment: Страница заблокирована
File: profile_ban.php
*/
if(!defined('MOZG'))
die("Hacking attempt!");
$tpl->load_template('profile_baned.tpl');
if($user_info['user_ban_date'])
$tpl->set('{date}', langdate('j F Y в H:i', $user_info['user_ban_date']));
else
$tpl->set('{date}', 'Неограниченно');
if($user_info['user_ban_description'])
$tpl->set('{description}', $user_info['user_ban_description']);
$tpl->compile('main');
echo str_replace('{theme}', '/templates/'.$config['temp'], $tpl->result['main']);
die();
?>