summaryrefslogtreecommitdiffstats
path: root/wp-inst
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-06-20 13:47:57 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-06-20 13:47:57 +0000
commitb5773ecfa2e0b9221aef1f0f49451290f0e70ae3 (patch)
tree4e86d189ca3c9e339db146ab4584754d02939f97 /wp-inst
parent86ab51ee33b0aa1a8e61a4e1198f0d2aeeb33ef3 (diff)
downloadwordpress-mu-b5773ecfa2e0b9221aef1f0f49451290f0e70ae3.tar.gz
wordpress-mu-b5773ecfa2e0b9221aef1f0f49451290f0e70ae3.tar.xz
wordpress-mu-b5773ecfa2e0b9221aef1f0f49451290f0e70ae3.zip
Sometimes "home" is blank and Incoming Links doesn't work. (fixes #31)
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@582 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst')
-rw-r--r--wp-inst/wp-admin/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-inst/wp-admin/index.php b/wp-inst/wp-admin/index.php
index 173bcb8..306e0b3 100644
--- a/wp-inst/wp-admin/index.php
+++ b/wp-inst/wp-admin/index.php
@@ -15,11 +15,11 @@ $today = current_time('mysql', 1);
<h2><?php _e('Latest Activity'); ?></h2>
<?php
-$rss = @fetch_rss('http://feeds.technorati.com/cosmos/rss/?url='. trailingslashit(get_option('home')) .'&partner=wordpress');
+$rss = @fetch_rss('http://feeds.technorati.com/cosmos/rss/?url='. trailingslashit(get_option('siteurl')) .'&partner=wordpress');
if ( isset($rss->items) && 0 != count($rss->items) ) {
?>
<div id="incominglinks">
-<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>
+<h3><?php _e('Incoming Links'); ?> <cite><a href="http://www.technorati.com/search/<?php echo trailingslashit(get_option('siteurl')); ?>?partner=wordpress"><?php _e('More'); ?> &raquo;</a></cite></h3>
<ul>
<?php
$rss->items = array_slice($rss->items, 0, 10);