Index: modules/blogapi/blogapi.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blogapi/blogapi.module,v
retrieving revision 1.100
diff -u -p -r1.100 blogapi.module
--- modules/blogapi/blogapi.module	5 Jan 2007 19:05:54 -0000	1.100
+++ modules/blogapi/blogapi.module	7 Jan 2007 04:53:00 -0000
@@ -138,7 +138,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, NULL, NULL, TRUE), 'blogid' => $type, 'blogName' => $user->name . ": " . $type);
+      $structs[] = array('url' => url('blog/'. $user->uid, NULL, NULL, TRUE), 'blogid' => $type, 'blogName' => $user->name .": ". $type);
     }
     return $structs;
   }
@@ -161,7 +161,7 @@ function blogapi_blogger_get_user_info($
       'firstname' => $name[0],
       'nickname' => $user->name,
       'email' => $user->mail,
-      'url' => url('blog/' . $user->uid, NULL, NULL, TRUE));
+      'url' => url('blog/'. $user->uid, NULL, NULL, TRUE));
   }
   else {
     return blogapi_error($user);
@@ -327,7 +327,7 @@ function blogapi_blogger_get_recent_post
   else {
     $result = db_query_range("SELECT n.nid, n.title, n.created, u.name FROM {node} n, {users} u WHERE n.uid = u.uid AND n.type = '%s' AND n.uid = %d ORDER BY n.created DESC", $type, $user->uid, 0, $number_of_posts);
   }
-  $blogs = array ();
+  $blogs = array();
   while ($blog = db_fetch_object($result)) {
     $blogs[] = _blogapi_get_post($blog, $bodies);
   }
@@ -383,7 +383,7 @@ function blogapi_metaweblog_get_category
       foreach ($terms as $term) {
         $term_name = $term->name;
         foreach (module_invoke('taxonomy', 'get_parents', $term->tid, 'tid') as $parent) {
-          $term_name = $parent->name . '/' . $term_name;
+          $term_name = $parent->name .'/'. $term_name;
         }
         $categories[] = array('categoryName' => $term_name, 'categoryId' => $term->tid);
       }
@@ -421,7 +421,7 @@ function blogapi_mt_get_post_categories(
   foreach ($terms as $term) {
     $term_name = $term->name;
     foreach (module_invoke('taxonomy', 'get_parents', $term->tid, 'tid') as $parent) {
-      $term_name = $parent->name . '/' . $term_name;
+      $term_name = $parent->name .'/'. $term_name;
     }
     $categories[] = array('categoryName' => $term_name, 'categoryId' => $term->tid, 'isPrimary' => TRUE);
   }
@@ -648,7 +648,7 @@ function _blogapi_mt_extra(&$node, $stru
     $node->body = $struct['mt_excerpt'] .'<!--break-->'.$node->body;
   }
   if ($struct['mt_text_more']) {
-    $node->body = $node->body . '<!--extended-->' . $struct['mt_text_more'];
+    $node->body = $node->body .'<!--extended-->'. $struct['mt_text_more'];
   }
 
   // mt_convert_breaks
@@ -667,7 +667,7 @@ function _blogapi_mt_extra(&$node, $stru
 }
 
 function _blogapi_get_post($node, $bodies = TRUE) {
-  $xmlrpcval = array (
+  $xmlrpcval = array(
     'userid' => $node->name,
     'dateCreated' => xmlrpc_date($node->created),
     'title' => $node->title,
