Index: trunk/extensions/Wikidata/includes/WikidataPageHistory.php |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | | -class WikidataPageHistory extends PageHistory { |
| 4 | +class WikidataPageHistory extends HistoryPage { |
5 | 5 | |
6 | 6 | public function history() { |
7 | 7 | wfProfileIn( __METHOD__ ); |
Index: trunk/extensions/MetavidWiki/includes/MV_MetavidInterface/MV_Overlay.php |
— | — | @@ -983,7 +983,7 @@ |
984 | 984 | global $mvgIP, $wgOut; |
985 | 985 | $title = Title::newFromText( $titleKey, MV_NS_MVD ); |
986 | 986 | $article = new Article( $title ); |
987 | | - $pageHistoryAjax = new PageHistory( $article ); |
| 987 | + $pageHistoryAjax = new HistoryPage( $article ); |
988 | 988 | // @@todo fix problems... ajax action url context !=history url context |
989 | 989 | // so forming urls for links get errors |
990 | 990 | $pageHistoryAjax->history(); |
Index: trunk/extensions/MetavidWiki/includes/MV_MetavidInterface/MV_PageHistoryAjax.php |
— | — | @@ -10,5 +10,5 @@ |
11 | 11 | * @url http://metavid.org |
12 | 12 | */ |
13 | 13 | if ( !defined( 'MEDIAWIKI' ) ) die( 1 ); |
14 | | -class MV_PageHistoryAjax extends PageHistory { |
| 14 | +class MV_PageHistoryAjax extends HistoryPage { |
15 | 15 | } |