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