git subtree merge를 위한 g4s_branch 및 서브트리 생성

This commit is contained in:
chicpro
2013-04-26 15:21:39 +09:00
parent f7247c0050
commit da91511e5f
711 changed files with 94885 additions and 0 deletions

11
g4s/bbs/scrap_delete.php Normal file
View File

@ -0,0 +1,11 @@
<?php
include_once('./_common.php');
if (!$is_member)
alert('회원만 이용하실 수 있습니다.');
$sql = " delete from {$g4['scrap_table']} where mb_id = '{$member['mb_id']}' and ms_id = '$ms_id' ";
sql_query($sql);
goto_url('./scrap.php?page='.$page);
?>