|
@@ 669-676 (lines=8) @@
|
| 666 |
|
} |
| 667 |
|
$vor = $page - 1; |
| 668 |
|
$next = $page + 1; |
| 669 |
|
if ($vor != 0) { |
| 670 |
|
$url = $sids.'&action=search&tagging_id='.$taggingId.'&seite='.$vor; |
| 671 |
|
$oLink = new Link(Link::getSystemRelativeUri().'?'.$url, $this->config); |
| 672 |
|
$oLink->itemTitle = 'tag'; |
| 673 |
|
$oLink->text = $this->translation['msgPrevious']; |
| 674 |
|
$oLink->tooltip = $this->translation['msgPrevious']; |
| 675 |
|
$output .= '[ '.$oLink->toHtmlAnchor().' ]'; |
| 676 |
|
} |
| 677 |
|
$output .= ' '; |
| 678 |
|
if ($next <= $pages) { |
| 679 |
|
$url = $sids.'&action=search&tagging_id='.$taggingId.'&seite='.$next; |
|
@@ 678-685 (lines=8) @@
|
| 675 |
|
$output .= '[ '.$oLink->toHtmlAnchor().' ]'; |
| 676 |
|
} |
| 677 |
|
$output .= ' '; |
| 678 |
|
if ($next <= $pages) { |
| 679 |
|
$url = $sids.'&action=search&tagging_id='.$taggingId.'&seite='.$next; |
| 680 |
|
$oLink = new Link(Link::getSystemRelativeUri().'?'.$url, $this->config); |
| 681 |
|
$oLink->itemTitle = 'tag'; |
| 682 |
|
$oLink->text = $this->translation['msgNext']; |
| 683 |
|
$oLink->tooltip = $this->translation['msgNext']; |
| 684 |
|
$output .= '[ '.$oLink->toHtmlAnchor().' ]'; |
| 685 |
|
} |
| 686 |
|
$output .= '</strong></p>'; |
| 687 |
|
} |
| 688 |
|
|