* Undo inconsistent editing behavior change
authorBrion Vibber <brion@users.mediawiki.org>
Thu, 14 Jul 2005 02:11:51 +0000 (02:11 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Thu, 14 Jul 2005 02:11:51 +0000 (02:11 +0000)
RELEASE-NOTES
includes/EditPage.php

index 1fe7000..9eb56f1 100644 (file)
@@ -580,6 +580,8 @@ of MediaWiki:Newpagetext) to &action=edit, if page is new.
 * use comment form when creating a new talk page
 * (bug 460) Properly handle <center> tags as a block.
 * (bug 2001) Implement client-side sorting of table fields with JavaScript
+* Undo inconsistent editing behavior change
+
 
 === Caveats ===
 
index f73d5e2..c1ffe75 100644 (file)
@@ -306,12 +306,6 @@ class EditPage {
                // css / js subpages of user pages get a special treatment
                $isCssJsSubpage = $wgTitle->isCssJsSubpage();
                
-               # If we're creating a discussion page, use the standard comment
-               # form.
-               if(!$wgTitle->exists() && $wgTitle->isTalkPage()) {
-                       $this->section='new';
-               }               
-
                if(!$this->mTitle->getArticleID()) { # new article
                        $editintro = $wgRequest->getText( 'editintro' );
                        $addstandardintro=true;