From 21af95e68725a71f6bf893d413d6664090bbd649 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 12 Jul 2007 20:12:00 +0000 Subject: [PATCH] * bug 10557 -- use a line break in raw watchlist edit to avoid bugging opera --- includes/WatchlistEditor.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/WatchlistEditor.php b/includes/WatchlistEditor.php index 2ad32bb028..f0662b3637 100644 --- a/includes/WatchlistEditor.php +++ b/includes/WatchlistEditor.php @@ -434,6 +434,7 @@ class WatchlistEditor { $form .= '
' . wfMsgHtml( 'watchlistedit-raw-legend' ) . ''; $form .= wfMsgExt( 'watchlistedit-raw-explain', 'parse' ); $form .= Xml::label( wfMsg( 'watchlistedit-raw-titles' ), 'titles' ); + $form .= "
\n"; $form .= Xml::openElement( 'textarea', array( 'id' => 'titles', 'name' => 'titles', 'rows' => $wgUser->getIntOption( 'rows' ), 'cols' => $wgUser->getIntOption( 'cols' ) ) ); $titles = $this->getWatchlist( $user ); -- 2.20.1