Make WordPress Core

Ticket #2827: 2827.diff

File 2827.diff, 765 bytes (added by Nazgul, 20 years ago)
  • wp-admin/index.php

     
    1414<div id="zeitgeist">
    1515<h2><?php _e('Latest Activity'); ?></h2>
    1616
     17<?php   if ( '1' == get_option('blog_public') ) { ?>
    1718<?php
    1819$rss = @fetch_rss('http://feeds.technorati.com/cosmos/rss/?url='. trailingslashit(get_option('home')) .'&partner=wordpress');
    1920if ( isset($rss->items) && 0 != count($rss->items) ) {
     
    3031</ul>
    3132</div>
    3233<?php } ?>
     34<?php } ?>
    3335
    3436<?php
    3537$comments = $wpdb->get_results("SELECT comment_author, comment_author_url, comment_ID, comment_post_ID FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 5");