? sites/default/files ? sites/default/settings.php Index: modules/blogapi/blogapi.module =================================================================== RCS file: /cvs/drupal/drupal/modules/blogapi/blogapi.module,v retrieving revision 1.126 diff -u -p -r1.126 blogapi.module --- modules/blogapi/blogapi.module 17 Sep 2008 21:07:47 -0000 1.126 +++ modules/blogapi/blogapi.module 21 Sep 2008 19:10:37 -0000 @@ -145,7 +145,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; @@ -169,7 +169,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);