Removed Special{$this->getName()}ModifyFormFields from r86482. Seems kind of weird...
authorAaron Schulz <aaron@users.mediawiki.org>
Fri, 22 Jul 2011 21:31:50 +0000 (21:31 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Fri, 22 Jul 2011 21:31:50 +0000 (21:31 +0000)
includes/SpecialPage.php

index acaf32c..a91b587 100644 (file)
@@ -748,9 +748,6 @@ abstract class FormSpecialPage extends SpecialPage {
        protected function getForm() {
                $this->fields = $this->getFormFields();
 
-               // Give hooks a chance to alter the form, adding extra fields or text etc
-               wfRunHooks( "Special{$this->getName()}ModifyFormFields", array( &$this->fields ) );
-
                $form = new HTMLForm( $this->fields, $this->getContext() );
                $form->setSubmitCallback( array( $this, 'onSubmit' ) );
                $form->setWrapperLegend( wfMessage( strtolower( $this->getName() ) . '-legend' ) );