(bug 5800) Added $formCallback as a parameter to the hook EditPage::showEditForm...
authorChad Horohoe <demon@users.mediawiki.org>
Tue, 5 Jul 2011 12:48:46 +0000 (12:48 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Tue, 5 Jul 2011 12:48:46 +0000 (12:48 +0000)
RELEASE-NOTES-1.19
docs/hooks.txt
includes/EditPage.php

index 5802892..7239544 100644 (file)
@@ -64,6 +64,8 @@ production.
   the relevant section of the category.
 * (bug 29109) Allow the automatic edit summary for redirect creation
   show the first bit of the new redirect page.
+* (bug 5800) Added $formCallback as a parameter to the hook
+  EditPage::showEditForm:initial
 
 === Bug fixes in 1.19 ===
 * (bug 28868) Show total pages in the subtitle of an image on the
index 8a00b5a..004c7e7 100644 (file)
@@ -726,6 +726,7 @@ return value is ignored (should always return true)
 
 'EditPage::showEditForm:initial': before showing the edit form
 $editor: EditPage instance (object)
+$formCallback: Array for callback of modifying the edit form
 
 Return false to halt editing; you'll need to handle error messages, etc.
 yourself. Alternatively, modifying $error and returning true will cause the
index aa33ec4..a62cbfe 100644 (file)
@@ -1335,7 +1335,7 @@ class EditPage {
                        $previewOutput = $this->getPreviewText();
                }
 
-               wfRunHooks( 'EditPage::showEditForm:initial', array( &$this ) );
+               wfRunHooks( 'EditPage::showEditForm:initial', array( &$this, &$formCallback ) );
 
                $this->setHeaders();