From a3d254fbbcb58c00024746721701b219e105e3d8 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Thu, 25 Jun 2009 08:33:15 +0000 Subject: [PATCH] Wrap some more elements into divs --- includes/specials/SpecialUndelete.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/specials/SpecialUndelete.php b/includes/specials/SpecialUndelete.php index 673b6d5344..d8c9d1310b 100644 --- a/includes/specials/SpecialUndelete.php +++ b/includes/specials/SpecialUndelete.php @@ -945,7 +945,7 @@ class UndeleteForm { $wgOut->setPagetitle( wfMsg( 'viewdeletedpage' ) ); } - $wgOut->addWikiMsg( 'undeletepagetitle', $this->mTargetObj->getPrefixedText() ); + $wgOut->wrapWikiMsg( "
\n$1
\n", array ( 'undeletepagetitle', $this->mTargetObj->getPrefixedText() ) ); $archive = new PageArchive( $this->mTargetObj ); /* @@ -955,12 +955,14 @@ class UndeleteForm { return; } */ + $wgOut->addHTML( '
' ); if ( $this->mAllowed ) { $wgOut->addWikiMsg( "undeletehistory" ); $wgOut->addWikiMsg( "undeleterevdel" ); } else { $wgOut->addWikiMsg( "undeletehistorynoadmin" ); } + $wgOut->addHTML( '
' ); # List all stored revisions $revisions = $archive->listRevisions(); @@ -1025,7 +1027,7 @@ class UndeleteForm { Xml::fieldset( wfMsg( 'undelete-fieldset-title' ) ) . Xml::openElement( 'table', array( 'id' => 'mw-undelete-table' ) ) . " - " . + " . wfMsgWikiHtml( 'undeleteextrahelp' ) . " -- 2.20.1