Bugfix in wppost, improvement in libertree export and changes in statusnet and twitter #62

Merged
annando merged 32 commits from master into master 2012-06-23 14:10:19 +02:00
Showing only changes of commit 7e9b3450c5 - Show all commits

View file

@ -166,8 +166,13 @@ function tumblr_send(&$a,&$b) {
}
}
if(count($tag_arr))
$tags = implode(',',$tag_arr);
$tags = implode(',',$tag_arr);
if ($b['title'] == '') {
// Take the description from the bookmark
if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches))
$b['title'] = $matches[2];
}
$params = array(
'email' => $tmbl_username,