Libertree: Now the title is included in the message as well

This commit is contained in:
Michael Vogel 2012-06-17 20:35:20 +02:00
parent daed8c8720
commit c43a3773c8
1 changed files with 8 additions and 3 deletions

View File

@ -167,16 +167,21 @@ function libertree_send(&$a,&$b) {
}
}
if(count($tag_arr))
$tags = implode(',',$tag_arr);
$tags = implode(',',$tag_arr);
$title = $b['title'];
$body = $b['body'];
if(strlen($title))
$body = "[b]".html_entity_decode($title)."[/b]\n\n".$body;
$params = array(
'text' => bb2diaspora($b['body'])
'text' => bb2diaspora($body)
// 'token' => $ltree_api_token
);
$result = post_url($ltree_blog,$params);
logger('libertree: ' . $result);
logger('libertree: ' . $result);
}
}