Skip to content

Commit

Permalink
refs #1604 : bugfix : context was not callable.
Browse files Browse the repository at this point in the history
  • Loading branch information
inureyes committed Feb 24, 2012
1 parent a5db90b commit 10491dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/view/iphoneView.php
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,8 @@ function printMobileRemoteImageFilename($filename) {

function printMobileListNavigation($paging,$postfix) {
$script = '';
$itemsView .= '<div data-role="navbar" data-theme="c">'.CRLF;
$context = Model_Context::getInstance();
$itemsView = '<div data-role="navbar" data-theme="c">'.CRLF;
$itemsView .= '<ul>'.CRLF;
if(isset($paging['prev'])){
$itemsView .= '<li><a data-role="button" data-theme="d" data-icon="arrow-l" href="' .$context->getProperty('uri.blog') . '/'.$postfix.'?page=' . $paging['prev'] . '" class="previous">'._textf('%1 페이지',$paging['prev']) . '</a></li>'.CRLF;
Expand Down

0 comments on commit 10491dc

Please sign in to comment.