diff options
Diffstat (limited to 'includes/SpecialImagelist.php')
-rw-r--r-- | includes/SpecialImagelist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SpecialImagelist.php b/includes/SpecialImagelist.php index ae2fe261d1fd..277ed15a3cd9 100644 --- a/includes/SpecialImagelist.php +++ b/includes/SpecialImagelist.php @@ -44,7 +44,7 @@ function wfSpecialImagelist() { } list( $limit, $offset ) = wfCheckLimits( 50 ); if ( 0 == $limit ) { - $lt = wfMsg( "all" ); + $lt = wfMsg( 'imagelistall' ); } else { $lt = $wgLang->formatNum( "${limit}" ); $sql .= " LIMIT {$limit}"; |