https://bugzilla.wikimedia.org/show_bug.cgi?id=11454

Andrey Kiselev <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #12 from Andrey Kiselev <[email protected]> ---
Bug in Language.php: function viewPrevNext. 

# Make 'next' link
$next = wfMessage( 'nextn' )->inLanguage( $this )->title( $title )->numParams(
$limit )->text();
if ( $atend ) {
    $nlink = htmlspecialchars( $next );
} else {
    $nlink = $this->numLink( $title, $offset + $limit, $limit,
        $query, $next, 'prevn-title', 'mw-nextlink' );
}

Should be 
    $nlink = $this->numLink( $title, $offset + $limit, $limit,
        $query, $next, 'nextn-title', 'mw-nextlink' );

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to