Skip to content

Commit

Permalink
refs #1604 : modified : pagination link modified.
Browse files Browse the repository at this point in the history
  • Loading branch information
inureyes committed Feb 26, 2012
1 parent 73002fb commit dbe4cb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/view/iphoneView.php
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ function printMobileNavigation($entry, $jumpToComment = true, $jumpToTrackback =
<?php
if (isset($paging['prev'])) {
?>
<li><a data-role="button" data-theme="d" data-icon="arrow-l" data-transition="reverse slide" href="<?php echo $blogURL.'/'.$mode;?>/<?php echo $paging['prefix'].$paging['prev'];?>" accesskey="1"><?php echo _text('이전 페이지');?></a></li>
<li><a data-role="button" data-theme="d" data-icon="arrow-l" data-transition="reverse slide" href="<?php echo $blogURL.'/'.$mode;?><?php echo $paging['prefix'].$paging['prev'];?>" accesskey="1"><?php echo _text('이전 페이지');?></a></li>
<?php
}
if (!isset($paging)) {
Expand All @@ -475,7 +475,7 @@ function printMobileNavigation($entry, $jumpToComment = true, $jumpToTrackback =
}
if (isset($paging['next'])) {
?>
<li><a data-role="button" data-theme="d" data-icon="arrow-r" data-transition="slide" href="<?php echo $blogURL.'/'.$mode;?>/<?php echo $paging['prefix'].$paging['next'];?>" accesskey="2"><?php echo _text('다음 페이지');?></a></li>
<li><a data-role="button" data-theme="d" data-icon="arrow-r" data-transition="slide" href="<?php echo $blogURL.'/'.$mode;?><?php echo $paging['prefix'].$paging['next'];?>" accesskey="2"><?php echo _text('다음 페이지');?></a></li>
<?php
}
?>
Expand Down

0 comments on commit dbe4cb1

Please sign in to comment.