From f491cb3afd4ff8490880c8fecfda9f468d0a7493 Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Tue, 12 Sep 2006 12:03:27 +0000 Subject: [PATCH] (bug 7293) HTML validation of Special:Revisiondelete form --- includes/SpecialRevisiondelete.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/SpecialRevisiondelete.php b/includes/SpecialRevisiondelete.php index 93ea1c4505..afbb589c60 100644 --- a/includes/SpecialRevisiondelete.php +++ b/includes/SpecialRevisiondelete.php @@ -92,7 +92,8 @@ class RevisionDeleteForm { $special = Title::makeTitle( NS_SPECIAL, 'Revisiondelete' ); $wgOut->addHtml( wfElement( 'form', array( 'method' => 'post', - 'action' => $special->getLocalUrl( 'action=submit' ) ) ) ); + 'action' => $special->getLocalUrl( 'action=submit' ) ), + null ) ); $wgOut->addHtml( '
' . wfMsgHtml( 'revdelete-legend' ) . '' ); foreach( $this->checks as $item ) { -- 2.20.1