Файл: backup_fzrf 2/system/modules/static.php
Строк: 27
<?php
/*==========================================
Appointment: Статические страницы
File: static.php
Author: Sergei Pavlenko
Engine: People Engine Cms
Copyright: People Design Group (с) 2014
e-mail: info@vxas.ru
URL: http://www.vxas.ru/
Данный код защищен авторскими правами
===========================================*/
if(!defined('MOZG'))
die('Hacking attempt!');
if($ajax == 'yes')
NoAjaxQuery();
if($logged){
$alt_name = $db->safesql(totranslit($_GET['page']));
$row = $db->super_query("SELECT title, text FROM `".PREFIX."_static` WHERE alt_name = '".$alt_name."'");
if($row){
$tpl->load_template('static.tpl');
$tpl->set('{alt_name}', $alt_name);
$tpl->set('{title}', stripslashes($row['title']));
$tpl->set('{text}', stripslashes($row['text']));
$tpl->compile('content');
} else
msgbox('', 'Страница не найдена.', 'info_2');
$tpl->clear();
$db->free();
} else {
$user_speedbar = $lang['no_infooo'];
msgbox('', $lang['not_logged'], 'info');
}
?>