Файл: system/modules/register_new.php
Строк: 21
<?php
if(!defined('MOZG'))
die('Hacking attempt!');
if(!$logged){
$tpl->load_template('reg_new.tpl');
//################## Загружаем Страны ##################//
$sql_country = $db->super_query("SELECT SQL_CALC_FOUND_ROWS * FROM `".PREFIX."_country` ORDER by `name` ASC", true, "country", true);
foreach($sql_country as $row_country)
$all_country .= '<option value="'.$row_country['id'].'">'.stripslashes($row_country['name']).'</option>';
$tpl->set('{country}', $all_country);
$tpl->compile('content');
}else{
msgbox('', 'Вы уже зарегистрированы.', 'info');
}
?>