From: Thomas Dalton Date: Thu, 15 Jan 2009 22:08:37 +0000 (+0000) Subject: Page moves should not be minor edits X-Git-Tag: 1.31.0-rc.0~43399 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=e2ea66e868f8bb9f409a899a02d45043f8f9748e;p=lhc%2Fweb%2Fwiklou.git Page moves should not be minor edits --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 3e469ba467..4dc2fc0433 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -42,6 +42,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 16852) padleft and padright now handle multibyte characters correctly * (bug 17010) maintenance/namespaceDupes.php now add the suffix recursively if the destination page exists +* Page moves should not be minor edits == API changes in 1.15 == * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions diff --git a/includes/Title.php b/includes/Title.php index 8ec621721f..93395f03f1 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -2664,7 +2664,7 @@ class Title { } # Save a null revision in the page's history notifying of the move - $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true ); + $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, false ); $nullRevId = $nullRevision->insertOn( $dbw ); $article = new Article( $this ); @@ -2763,7 +2763,7 @@ class Title { $now = $dbw->timestamp(); # Save a null revision in the page's history notifying of the move - $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true ); + $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, false ); $nullRevId = $nullRevision->insertOn( $dbw ); $article = new Article( $this );