Index: trunk/phase3/includes/Title.php |
— | — | @@ -2664,7 +2664,7 @@ |
2665 | 2665 | } |
2666 | 2666 | |
2667 | 2667 | # Save a null revision in the page's history notifying of the move |
2668 | | - $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true ); |
| 2668 | + $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, false ); |
2669 | 2669 | $nullRevId = $nullRevision->insertOn( $dbw ); |
2670 | 2670 | |
2671 | 2671 | $article = new Article( $this ); |
— | — | @@ -2763,7 +2763,7 @@ |
2764 | 2764 | $now = $dbw->timestamp(); |
2765 | 2765 | |
2766 | 2766 | # Save a null revision in the page's history notifying of the move |
2767 | | - $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true ); |
| 2767 | + $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, false ); |
2768 | 2768 | $nullRevId = $nullRevision->insertOn( $dbw ); |
2769 | 2769 | |
2770 | 2770 | $article = new Article( $this ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -42,6 +42,7 @@ |
43 | 43 | * (bug 16852) padleft and padright now handle multibyte characters correctly |
44 | 44 | * (bug 17010) maintenance/namespaceDupes.php now add the suffix recursively if |
45 | 45 | the destination page exists |
| 46 | +* Page moves should not be minor edits |
46 | 47 | |
47 | 48 | == API changes in 1.15 == |
48 | 49 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |