From 7e0072fd1781303cc4f3388925ba0ff95f7581d5 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Wed, 26 Jun 2013 23:44:48 +0200 Subject: [PATCH] Remove unnecessary clears This is a followup to Ibb9371ee. Bug: 33438 Change-Id: I0b39138967f2d29d5e50db0a5990d175fcc81a8e --- includes/specials/SpecialRecentchangeslinked.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialRecentchangeslinked.php b/includes/specials/SpecialRecentchangeslinked.php index 4773c4a327..b298668b9f 100644 --- a/includes/specials/SpecialRecentchangeslinked.php +++ b/includes/specials/SpecialRecentchangeslinked.php @@ -72,7 +72,7 @@ class SpecialRecentchangeslinked extends SpecialRecentChanges { $outputPage = $this->getOutput(); $title = Title::newFromURL( $target ); if ( !$title || $title->getInterwiki() != '' ) { - $outputPage->wrapWikiMsg( "
\n$1\n

", 'allpagesbadtitle' ); + $outputPage->wrapWikiMsg( "
\n$1\n
", 'allpagesbadtitle' ); return false; } -- 2.20.1