bugfix: edit pages are not articles (resulted in a few small glitches)
authorErik Moeller <erik@users.mediawiki.org>
Thu, 29 Jan 2004 22:36:02 +0000 (22:36 +0000)
committerErik Moeller <erik@users.mediawiki.org>
Thu, 29 Jan 2004 22:36:02 +0000 (22:36 +0000)
includes/EditPage.php

index 680b296..fdee841 100644 (file)
@@ -22,6 +22,8 @@ class EditPage {
                global $wgOut, $wgUser, $wgWhitelistEdit;
                global $wpTextbox1, $wpSummary, $wpSave, $wpPreview;
                global $wpMinoredit, $wpEdittime, $wpTextbox2;
+               // this is not an article
+               $wgOut->setArticleFlag(false);
 
                $fields = array( "wpTextbox1", "wpSummary", "wpTextbox2" );
                wfCleanFormFields( $fields );