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, false ); |
| 2668 | + $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true ); |
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, false ); |
| 2767 | + $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true ); |
2768 | 2768 | $nullRevId = $nullRevision->insertOn( $dbw ); |
2769 | 2769 | |
2770 | 2770 | $article = new Article( $this ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -53,7 +53,6 @@ |
54 | 54 | * (bug 16852) padleft and padright now handle multibyte characters correctly |
55 | 55 | * (bug 17010) maintenance/namespaceDupes.php now add the suffix recursively if |
56 | 56 | the destination page exists |
57 | | -* Page moves should not be minor edits |
58 | 57 | * (bug 17035) Special:Upload now fails gracefully if PHP's file_uploads has been |
59 | 58 | disabled |
60 | 59 | * Fixing the caching issue by using -{T|xxx}- syntax (only applies on wiki with LanguageConverter class) |