Merge pull request #355 from annando/1606-wppost-title

wppost: Better title detection
This commit is contained in:
Tobias Diekershoff 2016-06-23 20:44:48 +02:00 committed by GitHub
commit c719574a1a
1 changed files with 4 additions and 3 deletions

View File

@ -219,9 +219,10 @@ function wppost_send(&$a,&$b) {
// If the title is empty then try to guess
if ($wptitle == '') {
// Take the description from the bookmark
if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches))
$wptitle = $matches[2];
// Fetch information about the post
$siteinfo = get_attached_data($b["body"]);
if (isset($siteinfo["title"]))
$wptitle = $siteinfo["title"];
// If no bookmark is found then take the first line
if ($wptitle == '') {