Skip to content

Commit

Permalink
잘못된 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
thisgun committed Feb 7, 2019
1 parent 40508b0 commit d0eb060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bbs/delete_comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
$sql = " select count(*) as cnt from {$write_table}
where wr_comment_reply like '{$comment_reply}%'
and wr_id <> '{$comment_id}'
and wr_parent = '{$write[wr_parent]}'
and wr_comment = '{$write[wr_comment]}'
and wr_parent = '{$write['wr_parent']}'
and wr_comment = '{$write['wr_comment']}'
and wr_is_comment = 1 ";
$row = sql_fetch($sql);
if ($row['cnt'] && !$is_admin)
Expand Down

0 comments on commit d0eb060

Please sign in to comment.