From: Antoine Musso Date: Thu, 25 May 2006 13:46:13 +0000 (+0000) Subject: Fix #6082: id for the form element X-Git-Tag: 1.31.0-rc.0~57039 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=0b14a434ac9ca5afd6e40e478f8c04112605979d;p=lhc%2Fweb%2Fwiklou.git Fix #6082: id for the form element --- diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index 12cc45d550..6e5bb175b8 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -479,7 +479,7 @@ class UndeleteForm { $titleObj = Title::makeTitle( NS_SPECIAL, "Undelete" ); $action = $titleObj->getLocalURL( "action=submit" ); # Start the form here - $top = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $action ) ); + $top = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $action, 'id' => 'undelete' ) ); $wgOut->addHtml( $top ); }