Файл: system/modules/static.php
Строк: 14
<?php
/*
Appointment: Статические страницы
File: static.php
*/
if(!defined('MOZG'))
die('Hacking attempt!');
if($ajax == 'yes')
NoAjaxQuery();
$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();
?>