From 24c5cda521f6dba7bd74edb24e494e704b467af4 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 13 Jun 2008 18:52:38 +0000 Subject: [PATCH] fix for r36212: take care of the namespace too --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 0e501d00d6..8fe38f0c84 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1438,7 +1438,7 @@ class OutputPage { # menu in your browser. $rctitle = SpecialPage::getTitleFor( 'Recentchanges' ); - if ( $wgTitle->getText() != $rctitle->getText() ) { + if ( $wgTitle->getPrefixedText() != $rctitle->getPrefixedText() ) { global $wgSitename; $ret .= $this->feedLink( -- 2.20.1