diff --git a/AvocadoAmber/bbs/write_update.php b/AvocadoAmber/bbs/write_update.php index fc9f2ed..4c45b17 100644 --- a/AvocadoAmber/bbs/write_update.php +++ b/AvocadoAmber/bbs/write_update.php @@ -472,11 +472,6 @@ if ($w == '' || $w == 'r') { EventHandler::triggerEvent("gnuboard.bbs.write_update_document_update", $bo_table, $board, $wr_id, $w, $qstr, $redirect_url); } -// 게시판그룹접근사용을 하지 않아야 하고 비회원 글읽기가 가능해야 하며 비밀글이 아니어야 합니다. -if (!$group['gr_use_access'] && $board['bo_read_level'] < 2 && !$secret) { - naver_syndi_ping($bo_table, $wr_id); -} - // 파일개수 체크 $file_count = 0; $upload_count = !empty($_FILES['bf_file']['name']) ? count($_FILES['bf_file']['name']) : 0; diff --git a/AvocadoAmber/bbs/write_update_file.php b/AvocadoAmber/bbs/write_update_file.php index 0a8ad50..434a580 100644 --- a/AvocadoAmber/bbs/write_update_file.php +++ b/AvocadoAmber/bbs/write_update_file.php @@ -451,11 +451,6 @@ if ($w == '' || $w == 'r') { sql_query("UPDATE {$g5['board_table']} SET bo_notice = '{$bo_notice}' where bo_table = '{$bo_table}' "); } -// 게시판그룹접근사용을 하지 않아야 하고 비회원 글읽기가 가능해야 하며 비밀글이 아니어야 합니다. -if (!$group['gr_use_access'] && $board['bo_read_level'] < 2 && !$secret) { - naver_syndi_ping($bo_table, $wr_id); -} - // 파일개수 체크 $file_count = 0; $upload_count = count($_FILES['bf_file']['name']);