From 532829c7c620c9badce1585c2bbf9cc831d5cacd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Fri, 4 Dec 2015 17:39:53 +0100 Subject: [PATCH] SpecialWatchlist: Remove random unnecessary `
` Change-Id: I7ebe73ae0773a4bfc52c02fdc0cd028913b044b3 --- includes/specials/SpecialWatchlist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/specials/SpecialWatchlist.php b/includes/specials/SpecialWatchlist.php index 32d4552762..a01df6936b 100644 --- a/includes/specials/SpecialWatchlist.php +++ b/includes/specials/SpecialWatchlist.php @@ -469,7 +469,7 @@ class SpecialWatchlist extends ChangesListSpecialPage { $form .= $this->msg( 'watchlist-hide' ) . $this->msg( 'colon-separator' )->escaped() . implode( ' ', $links ); - $form .= "\n
\n

"; + $form .= "\n
\n"; $form .= Html::namespaceSelector( array( 'selected' => $opts['namespace'], @@ -495,7 +495,7 @@ class SpecialWatchlist extends ChangesListSpecialPage { $opts['associated'], array( 'title' => $this->msg( 'tooltip-namespace_association' )->text() ) ) . "\n"; - $form .= Xml::submitButton( $this->msg( 'allpagessubmit' )->text() ) . "

\n"; + $form .= Xml::submitButton( $this->msg( 'allpagessubmit' )->text() ) . "\n"; foreach ( $hiddenFields as $key => $value ) { $form .= Html::hidden( $key, $value ) . "\n"; } -- 2.20.1