WordPress 2.0.2. To switch off the feed at the Dashboard.
Interesting, but should I do this ?
http://trac.wordpress.org/ticket/2177
http://trac.wordpress.org/attachment/ticket/2177/2177.diff
Index: wp-admin/index.php
======================================
— wp-admin/index.php (revision 3378)
+++ wp-admin/index.php (working copy)
@@ -143,7 +143,8 @@-$rss = @fetch_rss(’http://planet.wordpress.org/feed/’);
+$feed_url = apply_filters(’dash_feed_url’, ‘http://planet.wordpress.org/feed/’);
+$rss = @fetch_rss($feed_url);
if ( isset($rss->items) && 0 != count($rss->items) ) {
?>
[TSI]