From c84f760347a458fd56894debcc615ee1c80edb49 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 24 Apr 2004 20:41:28 +0000 Subject: [PATCH] Bug fix from Josh @ elsewhere.org. git-svn-id: https://develop.svn.wordpress.org/trunk@1146 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 8ad8ee9721..64ac2a013c 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -515,8 +515,8 @@ function timer_stop($display=0,$precision=3) { //if called like timer_stop(1), w function weblog_ping($server = '', $path = '') { $f = new xmlrpcmsg('weblogUpdates.ping', - array(new xmlrpcval(get_settings('blog_name'), 'string'), - new xmlrpcval(get_settings('blog_url') ,'string'))); + array(new xmlrpcval(get_settings('blogname'), 'string'), + new xmlrpcval(get_settings('siteurl') ,'string'))); $c = new xmlrpc_client($path, $server, 80); $r = $c->send($f);