From f3c5572c26cae4846f68aaee7dc890d579797412 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Sun, 14 Feb 2010 11:36:40 +0000 Subject: [PATCH] Follow-up r62358: Wrap warning message into a div with the generic "error" and a specific "mw-moveuserpage-warning" class --- includes/specials/SpecialMovepage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialMovepage.php b/includes/specials/SpecialMovepage.php index eb8f50f981..02197b199c 100644 --- a/includes/specials/SpecialMovepage.php +++ b/includes/specials/SpecialMovepage.php @@ -132,7 +132,7 @@ class MovePageForm { $err = ''; } else { if ($this->oldTitle->getNamespace() == NS_USER && !$this->oldTitle->isSubpage() ) { - $wgOut->addWikiMsg( 'moveuserpage-warning' ); + $wgOut->wrapWikiMsg( "
\n$1\n
", 'moveuserpage-warning' ); } $wgOut->addWikiMsg( 'movepagetext' ); $movepagebtn = wfMsg( 'movepagebtn' ); -- 2.20.1