From 90e7a005ffe21dd5ba37ac79ec2c1b0fd1a928b4 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Tue, 4 Aug 2009 00:50:50 +0000 Subject: [PATCH] Add wrapper div for RC label legend By request of Umherirrender on CodeReview for r54242. --- includes/specials/SpecialRecentchanges.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index 608bb500b2..2f3473ae0a 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -472,8 +472,10 @@ class SpecialRecentChanges extends SpecialPage { $flags[] = ChangesList::flagLegend( 'unpatrolled' ); } + $wgOut->addHTML( '
' ); $wgOut->addWikiMsg( 'recentchanges-label-legend', $wgLang->commaList( $flags ) ); + $wgOut->addHTML( '
' ); $this->setBottomText( $wgOut, $opts ); } -- 2.20.1