showDiff needs headers as parameters, even though they aren't needed here. Just give...
authorDaniel Friesen <dantman@users.mediawiki.org>
Sun, 1 Jun 2008 23:47:32 +0000 (23:47 +0000)
committerDaniel Friesen <dantman@users.mediawiki.org>
Sun, 1 Jun 2008 23:47:32 +0000 (23:47 +0000)
includes/Article.php

index cc44187..0cb15a0 100644 (file)
@@ -2612,7 +2612,7 @@ class Article {
                $wgOut->addHtml( wfMsgExt( 'rollback-success', array( 'parse', 'replaceafter' ), $old, $new ) );
                $wgOut->returnToMain( false, $this->mTitle );
                $de = new DifferenceEngine( $this->mTitle, $current->getId(), 'next', false, true );
-               $de->showDiff();
+               $de->showDiff( '', '' );
        }