@@ 640-647 (lines=8) @@ | ||
637 | } |
|
638 | $vor = $page - 1; |
|
639 | $next = $page + 1; |
|
640 | if ($vor != 0) { |
|
641 | $url = $sids.'&action=search&tagging_id='.$taggingId.'&seite='.$vor; |
|
642 | $oLink = new PMF_Link(PMF_Link::getSystemRelativeUri().'?'.$url, $this->_config); |
|
643 | $oLink->itemTitle = 'tag'; |
|
644 | $oLink->text = $this->pmf_lang['msgPrevious']; |
|
645 | $oLink->tooltip = $this->pmf_lang['msgPrevious']; |
|
646 | $output .= '[ '.$oLink->toHtmlAnchor().' ]'; |
|
647 | } |
|
648 | $output .= ' '; |
|
649 | if ($next <= $pages) { |
|
650 | $url = $sids.'&action=search&tagging_id='.$taggingId.'&seite='.$next; |
|
@@ 649-656 (lines=8) @@ | ||
646 | $output .= '[ '.$oLink->toHtmlAnchor().' ]'; |
|
647 | } |
|
648 | $output .= ' '; |
|
649 | if ($next <= $pages) { |
|
650 | $url = $sids.'&action=search&tagging_id='.$taggingId.'&seite='.$next; |
|
651 | $oLink = new PMF_Link(PMF_Link::getSystemRelativeUri().'?'.$url, $this->_config); |
|
652 | $oLink->itemTitle = 'tag'; |
|
653 | $oLink->text = $this->pmf_lang['msgNext']; |
|
654 | $oLink->tooltip = $this->pmf_lang['msgNext']; |
|
655 | $output .= '[ '.$oLink->toHtmlAnchor().' ]'; |
|
656 | } |
|
657 | $output .= '</strong></p>'; |
|
658 | } |
|
659 |