Ticket #2177: 2177.diff
| File 2177.diff, 2.5 kB (added by rob1n, 1 year ago) |
|---|
-
wp-admin/index-extra.php
old new 7 7 switch ( $_GET['jax'] ) { 8 8 9 9 case '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' )); 11 11 if ( isset($rss->items) && 1 < count($rss->items) ) { // Technorati returns a 1-item feed when it has no results 12 12 ?> 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 »'); ?></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 »'); ?></a></cite></h3> 14 14 <ul> 15 15 <?php 16 16 $rss->items = array_slice($rss->items, 0, 10); … … 24 24 break; 25 25 26 26 case 'devnews' : 27 $rss = @fetch_rss( 'http://wordpress.org/development/feed/');27 $rss = @fetch_rss(apply_filters( 'dashboard_primary_feed', 'http://wordpress.org/development/feed/' )); 28 28 if ( isset($rss->items) && 0 != count($rss->items) ) { 29 29 ?> 30 <h3><?php _e('WordPress Development Blog'); ?></h3>30 <h3><?php echo apply_filters( 'dashboard_primary_title', __('WordPress Development Blog') ); ?></h3> 31 31 <?php 32 32 $rss->items = array_slice($rss->items, 0, 3); 33 33 foreach ($rss->items as $item ) { … … 43 43 break; 44 44 45 45 case 'planetnews' : 46 $rss = @fetch_rss( 'http://planet.wordpress.org/feed/');46 $rss = @fetch_rss(apply_filters( 'dashboard_secondary_feed', 'http://planet.wordpress.org/feed/' )); 47 47 if ( isset($rss->items) && 0 != count($rss->items) ) { 48 48 ?> 49 <h3><?php _e('Other WordPress News'); ?></h3>49 <h3><?php echo apply_filters( 'dashboard_secondary_title', __('Other WordPress News') ); ?></h3> 50 50 <ul> 51 51 <?php 52 52 $rss->items = array_slice($rss->items, 0, 20); … … 60 60 } 61 61 ?> 62 62 </ul> 63 <p class="readmore"><a href=" http://planet.wordpress.org/"><?php _e('Read more'); ?> »</a></p>63 <p class="readmore"><a href="<?php echo apply_filters( 'dashboard_secondary_link', 'http://planet.wordpress.org/' ); ?>"><?php _e('Read more'); ?> »</a></p> 64 64 <?php 65 65 } 66 66 break;
