diff options
author | Antoine Musso <hashar@users.mediawiki.org> | 2004-11-13 20:40:28 +0000 |
---|---|---|
committer | Antoine Musso <hashar@users.mediawiki.org> | 2004-11-13 20:40:28 +0000 |
commit | 45060393ea1cc4b94f19e895adf121127508714e (patch) | |
tree | d23b7c169eb5b5838d476f4d59ad014edfe19bcc /includes/SpecialPopularpages.php | |
parent | f174e30565f5f21eb0686d753f4d91164d3cee7f (diff) | |
download | mediawikicore-45060393ea1cc4b94f19e895adf121127508714e.tar.gz mediawikicore-45060393ea1cc4b94f19e895adf121127508714e.zip |
Fix bug http://bugzilla.wikipedia.org/show_bug.cgi?id=705
Stop showing rss / atom feeds links for various special pages.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/6239
Diffstat (limited to 'includes/SpecialPopularpages.php')
-rw-r--r-- | includes/SpecialPopularpages.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/SpecialPopularpages.php b/includes/SpecialPopularpages.php index 640d7889f013..ca96168aa6d6 100644 --- a/includes/SpecialPopularpages.php +++ b/includes/SpecialPopularpages.php @@ -25,6 +25,7 @@ class PopularPagesPage extends QueryPage { # cur_counter is not indexed return true; } + function isSyndicated() { return false; } function getSQL() { $dbr =& wfGetDB( DB_SLAVE ); |