관리자모드 일부 원본 복구

This commit is contained in:
whitedot
2012-11-02 11:53:34 +09:00
parent d3ab4acee1
commit 50732cfc3b
54 changed files with 2758 additions and 2802 deletions

View File

@ -1,10 +1,10 @@
<?
$sub_menu = '300100';
include_once('./_common.php');
$sub_menu = "300100";
include_once("./_common.php");
check_demo();
auth_check($auth[$sub_menu], 'w');
auth_check($auth[$sub_menu], "w");
check_token();
@ -13,30 +13,30 @@ for ($i=0; $i<count($chk); $i++)
// 실제 번호를 넘김
$k = $chk[$i];
if ($is_admin != 'super')
if ($is_admin != "super")
{
$sql = ' select count(*) as cnt from $g4[board_table] a, $g4[group_table] b
where a.gr_id = "{$_POST["gr_id"][$k]}"
$sql = " select count(*) as cnt from $g4[board_table] a, $g4[group_table] b
where a.gr_id = '{$_POST['gr_id'][$k]}'
and a.gr_id = b.gr_id
and b.gr_admin = "$member['mb_id']" ';
and b.gr_admin = '$member[mb_id]' ";
$row = sql_fetch($sql);
if (!$row[cnt])
alert('최고관리자가 아닌 경우 다른 관리자의 게시판($board_table[$k])은 수정이 불가합니다.');
alert("최고관리자가 아닌 경우 다른 관리자의 게시판($board_table[$k])은 수정이 불가합니다.");
}
$sql = ' update $g4[board_table]
set gr_id = "{$_POST["gr_id"][$k]}",
bo_subject = "{$_POST["bo_subject"][$k]}",
bo_skin = "{$_POST["bo_skin"][$k]}",
bo_read_point = "{$_POST["bo_read_point"][$k]}",
bo_write_point = "{$_POST["bo_write_point"][$k]}",
bo_comment_point = "{$_POST["bo_comment_point"][$k]}",
bo_download_point = "{$_POST["bo_download_point"][$k]}",
bo_use_search = "{$_POST["bo_use_search"][$k]}",
bo_order_search = "{$_POST["bo_order_search"][$k]}"
where bo_table = "{$_POST["board_table"][$k]}" ';
$sql = " update $g4[board_table]
set gr_id = '{$_POST['gr_id'][$k]}',
bo_subject = '{$_POST['bo_subject'][$k]}',
bo_skin = '{$_POST['bo_skin'][$k]}',
bo_read_point = '{$_POST['bo_read_point'][$k]}',
bo_write_point = '{$_POST['bo_write_point'][$k]}',
bo_comment_point = '{$_POST['bo_comment_point'][$k]}',
bo_download_point = '{$_POST['bo_download_point'][$k]}',
bo_use_search = '{$_POST['bo_use_search'][$k]}',
bo_order_search = '{$_POST['bo_order_search'][$k]}'
where bo_table = '{$_POST['board_table'][$k]}' ";
sql_query($sql);
}
goto_url('./board_list.php?$qstr');
goto_url("./board_list.php?$qstr");
?>