From 40df5b1a9eef530838545d8a6eddb7e3ed8e8f92 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 14 Dec 2011 17:54:13 +0000 Subject: [PATCH] WikiPage::viewUpdates() -> WikiPage::doViewUpdates() --- includes/ImagePage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/ImagePage.php b/includes/ImagePage.php index 3e356489b6..5c0f3d1ba0 100644 --- a/includes/ImagePage.php +++ b/includes/ImagePage.php @@ -103,7 +103,7 @@ class ImagePage extends Article { $wgOut->setPageTitle( $this->getTitle()->getPrefixedText() ); $wgOut->addHTML( $this->viewRedirect( Title::makeTitle( NS_FILE, $this->mPage->getFile()->getName() ), /* $appendSubtitle */ true, /* $forceKnown */ true ) ); - $this->mPage->viewUpdates(); + $this->mPage->doViewUpdates(); return; } } @@ -140,7 +140,7 @@ class ImagePage extends Article { # Just need to set the right headers $wgOut->setArticleFlag( true ); $wgOut->setPageTitle( $this->getTitle()->getPrefixedText() ); - $this->mPage->viewUpdates(); + $this->mPage->doViewUpdates(); } # Show shared description, if needed -- 2.20.1