r91870 : Got tricked into believing it was action=diff instead of action=historysubmit
authorLeo Koppelkamm <diebuche@users.mediawiki.org>
Mon, 11 Jul 2011 11:05:24 +0000 (11:05 +0000)
committerLeo Koppelkamm <diebuche@users.mediawiki.org>
Mon, 11 Jul 2011 11:05:24 +0000 (11:05 +0000)
includes/Article.php

index 56c3e78..5d9a15a 100644 (file)
@@ -372,7 +372,7 @@ class Article extends Page {
                if ( $wgRequest->getCheck( 'diff' ) ) {
                        wfDebug( __METHOD__ . ": showing diff page\n" );
                        # Manually setting action=diff. Bug 25800
-                       $wgRequest->setVal( 'action', 'diff' );
+                       $wgRequest->setVal( 'action', 'historysubmit' );
                        $this->showDiffPage();
                        wfProfileOut( __METHOD__ );