모바일 환경에서 상품문의 사용후기 수 표시하도록 수정

This commit is contained in:
chicpro
2013-07-19 13:32:46 +09:00
parent c7c00a4fe6
commit 66b7f12f61
2 changed files with 17 additions and 25 deletions

View File

@ -129,7 +129,7 @@ if ($row['it_id']) {
$next_href2 = '';
}
// 관리자가 확인 사용후기의 갯수를 얻음
// 관리자가 확인 사용후기의 갯수를 얻음
$sql = " select count(*) as cnt from `{$g4['shop_item_use_table']}` where it_id = '{$it_id}' and is_confirm = '1' ";
$row = sql_fetch($sql);
$item_use_count = $row['cnt'];