Ticket #2177: 2177.diff

File 2177.diff, 2.5 kB (added by rob1n, 1 year ago)
  • wp-admin/index-extra.php

    old new  
    77switch ( $_GET['jax'] ) { 
    88 
    99case 'incominglinks' : 
    10 $rss = @fetch_rss('http://feeds.technorati.com/cosmos/rss/?url='. trailingslashit(get_option('home')) .'&partner=wordpress'); 
     10$rss = @fetch_rss(apply_filters( 'dashboard_incoming_links_feed', 'http://feeds.technorati.com/cosmos/rss/?url='. trailingslashit(get_option('home')) .'&partner=wordpress' )); 
    1111if ( isset($rss->items) && 1 < count($rss->items) ) { // Technorati returns a 1-item feed when it has no results 
    1212?> 
    13 <h3><?php _e('Incoming Links'); ?> <cite><a href="http://www.technorati.com/search/<?php echo trailingslashit(get_option('home')); ?>?partner=wordpress"><?php _e('More &raquo;'); ?></a></cite></h3> 
     13<h3><?php _e('Incoming Links'); ?> <cite><a href="<?php echo apply_filters( 'dashboard_incoming_links_link', 'http://www.technorati.com/search/<?php echo trailingslashit(get_option('home')); ?>?partner=wordpress' ); ?>"><?php _e('More &raquo;'); ?></a></cite></h3> 
    1414<ul> 
    1515<?php 
    1616$rss->items = array_slice($rss->items, 0, 10); 
     
    2424break; 
    2525 
    2626case 'devnews' : 
    27 $rss = @fetch_rss('http://wordpress.org/development/feed/'); 
     27$rss = @fetch_rss(apply_filters( 'dashboard_primary_feed', 'http://wordpress.org/development/feed/' )); 
    2828if ( isset($rss->items) && 0 != count($rss->items) ) { 
    2929?> 
    30 <h3><?php _e('WordPress Development Blog'); ?></h3> 
     30<h3><?php echo apply_filters( 'dashboard_primary_title', __('WordPress Development Blog') ); ?></h3> 
    3131<?php 
    3232$rss->items = array_slice($rss->items, 0, 3); 
    3333foreach ($rss->items as $item ) { 
     
    4343break; 
    4444 
    4545case 'planetnews' : 
    46 $rss = @fetch_rss('http://planet.wordpress.org/feed/'); 
     46$rss = @fetch_rss(apply_filters( 'dashboard_secondary_feed', 'http://planet.wordpress.org/feed/' )); 
    4747if ( isset($rss->items) && 0 != count($rss->items) ) { 
    4848?> 
    49 <h3><?php _e('Other WordPress News'); ?></h3> 
     49<h3><?php echo apply_filters( 'dashboard_secondary_title', __('Other WordPress News') ); ?></h3> 
    5050<ul> 
    5151<?php 
    5252$rss->items = array_slice($rss->items, 0, 20); 
     
    6060        } 
    6161?> 
    6262</ul> 
    63 <p class="readmore"><a href="http://planet.wordpress.org/"><?php _e('Read more'); ?> &raquo;</a></p> 
     63<p class="readmore"><a href="<?php echo apply_filters( 'dashboard_secondary_link', 'http://planet.wordpress.org/' ); ?>"><?php _e('Read more'); ?> &raquo;</a></p> 
    6464<?php 
    6565} 
    6666break;