diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-09-05 08:42:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-09-05 08:42:02 +0000 |
commit | ab1715750a9aa2157cd117fa6b98399bb3bf6512 (patch) | |
tree | b7287d0c047febac5de50db36868d06c5aee32d9 /modules/blogapi | |
parent | f655adcf9785376c760dea3ae681653e26ebf0fe (diff) | |
download | brdo-ab1715750a9aa2157cd117fa6b98399bb3bf6512.tar.gz brdo-ab1715750a9aa2157cd117fa6b98399bb3bf6512.tar.bz2 |
- Patch #172961 by webernet: code style cleanup.
Diffstat (limited to 'modules/blogapi')
-rw-r--r-- | modules/blogapi/blogapi.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index 33656ccd6..28539e2ff 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -631,7 +631,7 @@ function _blogapi_mt_extra(&$node, $struct) { // merge the 3 body sections (description, mt_excerpt, mt_text_more) into // one body if ($struct['mt_excerpt']) { - $node->body = $struct['mt_excerpt'] .'<!--break-->'.$node->body; + $node->body = $struct['mt_excerpt'] .'<!--break-->'. $node->body; } if ($struct['mt_text_more']) { $node->body = $node->body .'<!--extended-->'. $struct['mt_text_more']; @@ -658,8 +658,8 @@ function _blogapi_get_post($node, $bodies = TRUE) { 'dateCreated' => xmlrpc_date($node->created), 'title' => $node->title, 'postid' => $node->nid, - 'link' => url('node/'.$node->nid, array('absolute' => TRUE)), - 'permaLink' => url('node/'.$node->nid, array('absolute' => TRUE)), + 'link' => url('node/'. $node->nid, array('absolute' => TRUE)), + 'permaLink' => url('node/'. $node->nid, array('absolute' => TRUE)), ); if ($bodies) { if ($node->comment == 1) { |