From 3db01deba15ed988f20f5069fd8c633f04c7d326 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Fri, 4 Nov 2011 01:00:06 +0000 Subject: [PATCH] Documentation Fix mime-type on image --- includes/specials/SpecialProtectedtitles.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/includes/specials/SpecialProtectedtitles.php b/includes/specials/SpecialProtectedtitles.php index 59792dd339..81f3812ef1 100644 --- a/includes/specials/SpecialProtectedtitles.php +++ b/includes/specials/SpecialProtectedtitles.php @@ -208,6 +208,9 @@ class ProtectedTitlesPager extends AlphabeticPager { return ''; } + /** + * @return Title + */ function getTitle() { return SpecialPage::getTitleFor( 'Protectedtitles' ); } @@ -216,6 +219,9 @@ class ProtectedTitlesPager extends AlphabeticPager { return $this->mForm->formatRow( $row ); } + /** + * @return array + */ function getQueryInfo() { $conds = $this->mConds; $conds[] = 'pt_expiry>' . $this->mDb->addQuotes( $this->mDb->timestamp() ); -- 2.20.1