From a8d224b7222442709faafebf2a087abb9f0d573b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 30 Jun 2004 07:45:47 +0000 Subject: [PATCH] is not a real tag. It doesn't do anything and would cause XHTML 1.0 transitional validation to fail, so chucking it. (bug #981237) --- includes/EditPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 41f096e788..52b027a780 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -357,8 +357,8 @@ class EditPage { $checkboxhtml = $minoredithtml . $watchhtml . "
"; if ( "preview" == $formtype) { - $previewhead="

" . wfMsg( "preview" ) . "

\n

" . - wfMsg( "note" ) . wfMsg( "previewnote" ) . "

\n"; + $previewhead="

" . wfMsg( "preview" ) . "

\n

" . + wfMsg( "note" ) . wfMsg( "previewnote" ) . "

\n"; if ( $isConflict ) { $previewhead.="

" . wfMsg( "previewconflict" ) . "

\n"; -- 2.20.1