Файл: api_forum/theme_open.php
Строк: 11
<?
////////////////////////////////////////
///// Основа ApiCMS //////
///// Автор биллинга - IvanDanilov /////
///// Автор биллинга - IvanDanilov /////
///// ICQ 936545, mail: KyberID@ya.ru //
////////////////////////////////////////
/////////////////////////////////////////
$title = 'Открытие темы';
require_once '../api_core/apicms_system.php';
require_once '../api_core/head.php';
/////////////////////////////////////////
$theme_id = intval($_GET['id']);
if (!isset($user)) header('location: /index.php');
if (isset($_GET['id']) && mysql_result(mysql_query("SELECT COUNT(*) FROM `api_forum_theme` WHERE `id` = '".$theme_id."'"),0)==1){
$post=mysql_fetch_assoc(mysql_query("SELECT * FROM `api_forum_theme` WHERE `id` = '".$theme_id."' LIMIT 1"));
if (isset($user) && $user['id'] == $post['id_user'] or $user['level']==1 or $user['level']==2 && $post['close']==1){
mysql_query("UPDATE `api_forum_theme` SET `close` = '0' WHERE `id` = '$post[id]' LIMIT 1");
header("Location: theme.php?id=".$theme_id."");
}
}
//////////////////////////////////////////
?>