쇼핑몰 관리자 페이징에 모바일 설정 추가

This commit is contained in:
chicpro
2013-06-18 09:15:59 +09:00
parent ca04bceefc
commit ef00fa5b21
17 changed files with 17 additions and 17 deletions

View File

@ -101,7 +101,7 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
</section>
<p><?php echo get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page="); ?></p>
<p><?php echo get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page="); ?></p>
<?php
include_once (G4_ADMIN_PATH.'/admin.tail.php');