Размер файла: 1.62Kb
<?
/*
* Редактирование поста
* param editer
*/
if(!defined('SHCMS_ENGINE')) {
die( "Неправильное действие" );
}
switch($act):
case 'editor':
if(isset($_POST['submit_update']))
{
//Из $_POST превращаем в обычные переменные
if(isset($_POST['text'])) { $text = $_POST['text']; }
//Антимат
if( $glob_core['antimat'] == 1 )
{
$text = SwearFilter::filter($text);
}
//Если текст отсутствует
if( empty( $text ) )
{
echo engine::error('Введите текст');
header('Refresh: 1; url=index.php');
exit;
}
$ok_post = $db->query("UPDATE `chat` SET `text` = '".$text."' ,`id_user` = '".intval($id_user)."', `time` = '".time()."' WHERE `id` = '".$id_post."'");
if( $ok_post == true )
{
echo engine::success(Lang::__('Ваш пост успешно обновлен!'));
echo engine::home(array(Lang::__('Назад'),'index.php'));
exit;
}
else
{
echo engine::error(Lang::__('Ваш пост не обновлен!'));
echo engine::home(array(Lang::__('Назад'),'index.php'));
exit;
}
}
break;
endswitch;
?>