diff options
Diffstat (limited to 'includes/SpecialImagelist.php')
-rw-r--r-- | includes/SpecialImagelist.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/includes/SpecialImagelist.php b/includes/SpecialImagelist.php index 54ee83e5..5ecbe8a6 100644 --- a/includes/SpecialImagelist.php +++ b/includes/SpecialImagelist.php @@ -9,18 +9,19 @@ * */ function wfSpecialImagelist() { - global $wgUser, $wgOut, $wgLang, $wgContLang, $wgRequest, $wgMiserMode; + global $wgOut; $pager = new ImageListPager; $limit = $pager->getForm(); $body = $pager->getBody(); $nav = $pager->getNavigationBar(); - $wgOut->addHTML( " + $wgOut->addHTML( $limit - <br/> - $body - $nav" ); + . '<br/>' + . $body + . '<br/>' + . $nav ); } class ImageListPager extends TablePager { |