Файл: world-faces.ru/world-faces.ru/tabor_ad_panel/settings_chat.php
Строк: 108
<?
include_once '../sys/inc/start.php';
include_once '../sys/inc/compress.php';
include_once '../sys/inc/sess.php';
include_once '../sys/inc/home.php';
include_once '../sys/inc/settings.php';
$temp_set=$set;
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/ipua.php';
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/user.php';
only_level(1);
if (!isset($access['settings_change'])){header("Location: index.php?".SID);exit;}
$set['title']='Настройки чата';
include_once '../sys/inc/thead.php';
title();
if (isset($_POST['save']))
{
$temp_set['time_chat']=intval($_POST['time_chat']);
mysql_query("ALTER TABLE `user` CHANGE `set_time_chat` `set_time_chat` INT( 11 ) DEFAULT '$temp_set[time_chat]'");
$temp_set['umnik_new']=intval($_POST['umnik_new']);
$temp_set['umnik_help']=intval($_POST['umnik_help']);
$temp_set['umnik_time']=intval($_POST['umnik_time']);
$temp_set['shutnik_new']=intval($_POST['shutnik_new']);
if (save_settings($temp_set))
msg('Настройки успешно приняты');
else
$err='Нет прав для изменения файла настроек';
}
err();
aut();
echo "<form method="post" action="?">n";
echo "Автообновление в чате:<br />n<input type='text' name='time_chat' value='$temp_set[time_chat]' maxlength='3' /><br />n";
echo "Таймаут между вопросами (умник в чате):<br />n<input type='text' name='umnik_new' value='$temp_set[umnik_new]' maxlength='3' /><br />n";
echo "Таймаут между подсказками (умник в чате):<br />n<input type='text' name='umnik_help' value='$temp_set[umnik_help]' maxlength='3' /><br />n";
echo "Общее время ожидание ответа (умник в чате):<br />n<input type='text' name='umnik_time' value='$temp_set[umnik_time]' maxlength='3' /><br />n";
echo "Таймаут между шутками (шутник в чате):<br />n<input type='text' name='shutnik_new' value='$temp_set[shutnik_new]' maxlength='3' /><br />n";
echo "<input value="Изменить" name='save' type="submit" />n";
echo "</form>n";
echo "<div class='foot'>n";
echo "«<a href='/adm_panel/'>В админку</a><br />n";
echo "</div>n";
include_once '../sys/inc/tfoot.php';
?>