페이징 처리시 모바일 체크 조건 삭제
This commit is contained in:
@ -53,7 +53,7 @@ $order_action_url = G5_HTTPS_SHOP_URL.'/orderaddressupdate.php';
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<?php echo get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&page="); ?>
|
<?php echo get_paging($config['cf_mobile_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&page="); ?>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(function() {
|
$(function() {
|
||||||
|
|||||||
@ -24,9 +24,7 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
|
|||||||
$sql = " select *
|
$sql = " select *
|
||||||
from {$g5['g5_shop_order_address_table']}
|
from {$g5['g5_shop_order_address_table']}
|
||||||
where mb_id = '{$member['mb_id']}'
|
where mb_id = '{$member['mb_id']}'
|
||||||
order by
|
order by ad_default desc, ad_id desc
|
||||||
ad_default desc,
|
|
||||||
ad_id desc
|
|
||||||
limit $from_record, $rows";
|
limit $from_record, $rows";
|
||||||
|
|
||||||
$result = sql_query($sql);
|
$result = sql_query($sql);
|
||||||
@ -102,7 +100,7 @@ $order_action_url = G5_HTTPS_SHOP_URL.'/orderaddressupdate.php';
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<?php echo get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&page="); ?>
|
<?php echo get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&page="); ?>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(function() {
|
$(function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user