모바일 페이지 수 적용

This commit is contained in:
chicpro
2013-03-05 15:06:48 +09:00
parent 994978420d
commit bb4da22168
9 changed files with 10 additions and 10 deletions

View File

@ -132,7 +132,7 @@ $colspan = 5;
</div> </div>
<? <?
$pagelist = get_paging($config['cf_write_pages'], $page, $total_page, $_SERVER['PHP_SELF'].'?'.$qstr.'&amp;page='); $pagelist = get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, $_SERVER['PHP_SELF'].'?'.$qstr.'&amp;page=');
echo $pagelist; echo $pagelist;
?> ?>

View File

@ -175,7 +175,7 @@ $colspan = 8;
</form> </form>
</section> </section>
<?=get_paging($config['cf_write_pages'], $page, $total_page, $_SERVER['PHP_SELF'].'?'.$qstr.'&amp;page=');?> <?=get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, $_SERVER['PHP_SELF'].'?'.$qstr.'&amp;page=');?>
<script> <script>
function fboardlist_submit(f) function fboardlist_submit(f)

View File

@ -178,7 +178,7 @@ $colspan = 8;
</section> </section>
<? <?
$pagelist = get_paging($config['cf_write_pages'], $page, $total_page, $_SERVER['PHP_SELF'].'?'.$qstr.'&amp;page='); $pagelist = get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, $_SERVER['PHP_SELF'].'?'.$qstr.'&amp;page=');
echo $pagelist; echo $pagelist;
?> ?>

View File

@ -132,7 +132,7 @@ $colspan = 7;
</form> </form>
</section> </section>
<?=get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;gr_id=$gr_id&page=");?> <?=get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;gr_id=$gr_id&page=");?>
<script> <script>
function fboardgroupmember_submit(f) function fboardgroupmember_submit(f)

View File

@ -217,7 +217,7 @@ $colspan = 15;
</form> </form>
</section> </section>
<?=get_paging($config['cf_write_pages'], $page, $total_page, '?'.$qstr.'&amp;page=');?> <?=get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, '?'.$qstr.'&amp;page=');?>
<script> <script>
function fmemberlist_submit(f) function fmemberlist_submit(f)

View File

@ -173,7 +173,7 @@ function point_clear()
</form> </form>
</section> </section>
<?=get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page=");?> <?=get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page=");?>
<section id="point_mng" class="cbox"> <section id="point_mng" class="cbox">
<h2>개별회원 포인트 증감 설정</h2> <h2>개별회원 포인트 증감 설정</h2>

View File

@ -133,7 +133,7 @@ $colspan = 6;
</form> </form>
</section> </section>
<?=get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page=");?> <?=get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page=");?>
<script> <script>
$(function() { $(function() {

View File

@ -141,7 +141,7 @@ var list_delete_php = 'popular_list.php';
</form> </form>
</section> </section>
<?=get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page=");?> <?=get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page=");?>
<script> <script>
$(function() { $(function() {

View File

@ -95,7 +95,7 @@ $colspan = 3;
</section> </section>
<? <?
echo get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page="); echo get_paging(G4_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&amp;page=");
?> ?>
<? <?