From fff54fb0c2f2e5d15c13b5912dbeb8d429432890 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Tue, 20 Nov 2007 17:32:43 +0000 Subject: [PATCH] Tweaks for the new rateLimited(): remove @todo i18n, allow robot follow (if it sees any worthwhile links, why not?) --- includes/OutputPage.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index db91c148e4..fcd3a8d14f 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1333,13 +1333,12 @@ class OutputPage { /** * Turn off regular page output and return an error reponse * for when rate limiting has triggered. - * @todo i18n */ public function rateLimited() { global $wgOut; $this->setPageTitle(wfMsg('actionthrottled')); - $this->setRobotPolicy( 'noindex,nofollow' ); + $this->setRobotPolicy( 'noindex,follow' ); $this->setArticleRelated( false ); $this->enableClientCache( false ); $this->mRedirect = ''; -- 2.20.1