summaryrefslogtreecommitdiff
path: root/modules/blogapi
diff options
context:
space:
mode:
Diffstat (limited to 'modules/blogapi')
-rw-r--r--modules/blogapi/blogapi.module6
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) {