? 223435.patch Index: modules/blogapi/blogapi.module =================================================================== RCS file: /cvs/drupal/drupal/modules/blogapi/blogapi.module,v retrieving revision 1.118 diff -u -p -r1.118 blogapi.module --- modules/blogapi/blogapi.module 14 Apr 2008 17:48:35 -0000 1.118 +++ modules/blogapi/blogapi.module 15 Apr 2008 16:02:39 -0000 @@ -147,7 +147,7 @@ function blogapi_blogger_get_users_blogs $types = _blogapi_get_node_types(); $structs = array(); foreach ($types as $type) { - $structs[] = array('url' => url('blog/' . $user->uid, array('absolute' => TRUE)), 'blogid' => $type, 'blogName' => $user->name . ": " . $type); + $structs[] = array('url' => url('user/' . $user->uid, array('absolute' => TRUE)), 'blogid' => $type, 'blogName' => $user->name . ": " . $type); } return $structs; } @@ -170,7 +170,7 @@ function blogapi_blogger_get_user_info($ 'firstname' => $name[0], 'nickname' => $user->name, 'email' => $user->mail, - 'url' => url('blog/' . $user->uid, array('absolute' => TRUE))); + 'url' => url('user/' . $user->uid, array('absolute' => TRUE))); } else { return blogapi_error($user);