facebook: If the body is empty then the link is taken.

This commit is contained in:
Michael Vogel 2012-04-01 16:30:25 +02:00
parent ced503973a
commit 26ad8dc79a
1 changed files with 3 additions and 3 deletions

View File

@ -956,15 +956,15 @@ function facebook_post_hook(&$a,&$b) {
}
// Fallback - if message is empty
if(!strlen($msg))
$msg = $linkname;
if(!strlen($msg))
$msg = $link;
if(!strlen($msg))
$msg = $image;
if(!strlen($msg))
$msg = $linkname;
// If there is nothing to post then exit
if(!strlen($msg))
return;