사용후기리스트에서 qstr 변수 출력되지 않는 오류 수정

This commit is contained in:
chicpro
2013-07-12 10:45:01 +09:00
parent e16235331b
commit cdfaad9e24
3 changed files with 8 additions and 1 deletions

View File

@ -161,7 +161,7 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
<td class="td_num"><?php echo $row['is_score']; ?></td>
<td class="sit_use_confirm"><input type="checkbox" name="is_confirm[<?php echo $i; ?>]" <?php echo ($row['is_confirm'] ? 'checked' : ''); ?> value="1"></td>
<td class="td_smallmng">
<a href="./itemuseform.php?w=u&amp;is_id=<?php echo $row['is_id']; ?>&amp;$qstr"><span class="sound_only"><?php echo $row['is_subject']; ?> </span>수정</a>
<a href="./itemuseform.php?w=u&amp;is_id=<?php echo $row['is_id']; ?>&amp;<?php echo $qstr; ?>"><span class="sound_only"><?php echo $row['is_subject']; ?> </span>수정</a>
</td>
</tr>

View File

@ -379,8 +379,14 @@ if(!sql_query(" select rq_id from {$g4['shop_request_table']} limit 1 ", false))
`rq_amount2` INT(11) NOT NULL DEFAULT '0',
`rq_account` VARCHAR(255) NOT NULL DEFAULT '0',
`rq_process` TEXT NOT NULL,
`rq_is_admin` TINYINT(4) NOT NULL DEFAULT '0',
`rq_time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`rq_id`)
) ", false);
}
if(!sql_query(" select rq_parent from {$g4['shop_request_table']} limit 1 ", false)) {
sql_query(" ALTER TABLE `{$g4['shop_request_table']}`
ADD `rq_parent` INT(11) NOT NULL DEFAULT '0' AFTER `rq_ip` ", true);
}
?>

View File

@ -671,6 +671,7 @@ CREATE TABLE IF NOT EXISTS `shop_request` (
`rq_content` TEXT NOT NULL,
`rq_reg_time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`rq_ip` VARCHAR(255) NOT NULL DEFAULT '',
`rq_parent` INT(11) NOT NULL DEFAULT '0',
`rq_status` TINYINT(4) NOT NULL DEFAULT '0',
`rq_item` TEXT NOT NULL,
`rq_recv` TINYINT(4) NOT NULL DEFAULT '0',