Ich habe die pageNavigation.php so modifiziert, dass sie auch die Itemid übergibt... hat sie bei der Bib-Tex-Komponente nicht getan, was den schlechten Effekt hatte, dass man die Meldung erhielt, man solle sich anmelden, wenn man Seite 2, 3 etc anschauen wollte... gleiches Prinzip bei der Selectbox der Resultate - in diesem Sinne - fixed.

PHP-Code:
<?php
/**
* @version $Id: pageNavigation.php 5511 2006-10-19 12:17:15Z friesengeist $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// no direct access
defined'_VALID_MOS' ) or die( 'Restricted access' );

/**
* Page navigation support class
* @package Joomla
*/
class mosPageNav {
    
/** @var int The record number to start dislpaying from */
    
var $limitstart null;
    
/** @var int Number of rows to display per page */
    
var $limit null;
    
/** @var int Total number of rows */
    
var $total null;

    function 
mosPageNav$total$limitstart$limit ) {
        
$this->total        = (int) $total;
        
$this->limitstart    = (int) max$limitstart);
        
$this->limit        = (int) max$limit);
    }
    
/**
    * Returns the html limit # input box
    * @param string The basic link to include in the href
    * @return string
    */
    
function getLimitBox $link ) {
        
$limits = array();
        for (
$i=5$i <= 30$i+=5) {
            
$limits[] = mosHTML::makeOption"$i" );
        }
        
$limits[] = mosHTML::makeOption"50" );

        
// build the html select list
        
$link $link ."&amp;limit=' + this.options[selectedIndex].value + '&amp;limitstart="$this->limitstart;
        
$link sefRelToAbs$link );
        
$ItemId $_GET[Itemid];
        return 
mosHTML::selectList$limits'limit''class="inputbox" size="1" onchange="document.location.href=\''$link .'&Itemid='.$ItemId.'\';"''value''text'$this->limit );
    }
    
/**
    * Writes the html limit # input box
    * @param string The basic link to include in the href
    */
    
function writeLimitBox $link ) {
        echo 
mosPageNav::getLimitBox$link );
    }
    
/**
    * Writes the html for the pages counter, eg, Results 1-10 of x
    */
    
function writePagesCounter() {
        
$txt '';
        
$from_result $this->limitstart+1;
        if (
$this->limitstart $this->limit $this->total) {
            
$to_result $this->limitstart $this->limit;
        } else {
            
$to_result $this->total;
        }
        if (
$this->total 0) {
            
$txt .= _PN_RESULTS." $from_result - $to_result "._PN_OF." $this->total";
        }
        return 
$to_result $txt '';
    }

    
/**
    * Writes the html for the leafs counter, eg, Page 1 of x
    */
    
function writeLeafsCounter() {
        
$txt '';
        
$page ceil( ($this->limitstart 1) / $this->limit );
        if (
$this->total 0) {
            
$total_pages ceil$this->total $this->limit );
            
$txt .= _PN_PAGE." $page "._PN_OF." $total_pages";
        }
        return 
$txt;
    }    

    
/**
    * Writes the html links for pages, eg, previous, next, 1 2 3 ... x
    * @param string The basic link to include in the href
    */
    
function writePagesLinks$link ) {
        
$txt '';

        
$displayed_pages 10;
        
$total_pages $this->limit ceil$this->total $this->limit ) : 0;
        
$this_page $this->limit ceil( ($this->limitstart+1) / $this->limit ) : 1;
        
$start_loop = (floor(($this_page-1)/$displayed_pages))*$displayed_pages+1;
        if (
$start_loop $displayed_pages $total_pages) {
            
$stop_loop $start_loop $displayed_pages 1;
        } else {
            
$stop_loop $total_pages;
        }

        
$link .= '&amp;limit='$this->limit;

        if (!
defined'_PN_LT' ) || !defined'_PN_RT' ) ) {
            
DEFINE('_PN_LT','&lt;');
            
DEFINE('_PN_RT','&gt;');
        }
$ItemId $_GET[Itemid];
        
$pnSpace '';
        if (
_PN_LT || _PN_RT$pnSpace "&nbsp;";

        if (
$this_page 1) {
            
$page = ($this_page 2) * $this->limit;
            
            
$txt .= '<a href="'sefRelToAbs"$link&amp;limitstart=0" ) .'&Itemid='.$ItemId.'" class="pagenav" title="'_PN_START .'">'_PN_LT _PN_LT $pnSpace _PN_START .'</a> ';
            
$txt .= '<a href="'sefRelToAbs"$link&amp;limitstart=$page" ) .'&Itemid='.$ItemId.'" class="pagenav" title="'_PN_PREVIOUS .'">'_PN_LT $pnSpace _PN_PREVIOUS .'</a> ';
        } else {
            
$txt .= '<span class="pagenav">'_PN_LT _PN_LT $pnSpace _PN_START .'</span> ';
            
$txt .= '<span class="pagenav">'_PN_LT $pnSpace _PN_PREVIOUS .'</span> ';
        }

        for (
$i=$start_loop$i <= $stop_loop$i++) {
            
$page = ($i 1) * $this->limit;
            if (
$i == $this_page) {
                
$txt .= '<span class="pagenav">'$i .'</span> ';
            } else {
                
$txt .= '<a href="'sefRelToAbs$link .'&amp;limitstart='$page ) .'&Itemid='.$ItemId.'" class="pagenav"><strong>'$i .'</strong></a> ';
            }
        }

        if (
$this_page $total_pages) {
            
$page $this_page $this->limit;
            
$end_page = ($total_pages-1) * $this->limit;
            
$txt .= '<a href="'sefRelToAbs$link .'&amp;limitstart='$page ) .' " class="pagenav" title="'_PN_NEXT .'">'_PN_NEXT $pnSpace _PN_RT .'</a> ';
            
$txt .= '<a href="'sefRelToAbs$link .'&amp;limitstart='$end_page ) .' " class="pagenav" title="'_PN_END .'">'_PN_END $pnSpace _PN_RT _PN_RT .'</a>';
        } else {
            
$txt .= '<span class="pagenav">'_PN_NEXT $pnSpace _PN_RT .'</span> ';
            
$txt .= '<span class="pagenav">'_PN_END $pnSpace _PN_RT _PN_RT .'</span>';
        }
        return 
$txt;
    }
    
/**
     * Sets the vars {PAGE_LINKS}, {PAGE_LIST_OPTIONS} and {PAGE_COUNTER} for the page navigation template
     * @param object The patTemplate object
     * @param string The full link to be used in the nav link, eg index.php?option=com_content
     * @param string The name of the template to add the variables
     */
    
function setTemplateVars( &$tmpl$link ''$name 'admin-list-footer' ) {
        
$tmpl->addVar$name'PAGE_LINKS'$this->writePagesLinks$link ) );
        
$tmpl->addVar$name'PAGE_LIST_OPTIONS'$this->getLimitBox$link ) );
        
$tmpl->addVar$name'PAGE_COUNTER'$this->writePagesCounter() );
    }
}
?>