The title of bookmark links is now taken instead of the data that was fetched via oembed
This commit is contained in:
@@ -939,7 +939,22 @@ function add_page_info_to_body($body, $texturl = false, $no_photos = false) {
|
||||
}
|
||||
|
||||
if ($matches)
|
||||
$body .= add_page_info($matches[1], $no_photos);
|
||||
$footer = add_page_info($matches[1], $no_photos);
|
||||
|
||||
// Remove the link from the body if the link is attached at the end of the post
|
||||
if (isset($footer) AND (trim($footer) != "") AND (strpos($footer, $matches[1]))) {
|
||||
$removedlink = trim(str_replace($matches[1], "", $body));
|
||||
if (strstr($body, $removedlink))
|
||||
$body = $removedlink;
|
||||
|
||||
$removedlink = trim(str_replace("[url]".$matches[1]."[/url]", "", $body));
|
||||
if (strstr($body, $removedlink))
|
||||
$body = $removedlink;
|
||||
}
|
||||
|
||||
// Add the page information to the bottom
|
||||
if (isset($footer) AND (trim($footer) != ""))
|
||||
$body .= $footer;
|
||||
|
||||
return $body;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user