forked from friendica/friendica-addons
gpluspost: URL in title is removed when it points to the URL of the message
This commit is contained in:
parent
63404c06c9
commit
e0eaaf7b23
|
@ -283,9 +283,6 @@ function gpluspost_feeditem($pid, $uid) {
|
|||
if ($msglink == "")
|
||||
$msglink = $item["plink"];
|
||||
|
||||
if ($image != $msglink)
|
||||
$html = trim(str_replace($msglink, "", $html));
|
||||
|
||||
// Fetching the title - or the first line
|
||||
if ($item["title"] != "")
|
||||
$title = $item["title"];
|
||||
|
@ -294,6 +291,11 @@ function gpluspost_feeditem($pid, $uid) {
|
|||
$title = $lines[0];
|
||||
}
|
||||
|
||||
if ($image != $msglink)
|
||||
$html = trim(str_replace($msglink, "", $html));
|
||||
|
||||
$title = trim(str_replace($msglink, "", $title));
|
||||
|
||||
if ($uid == 0)
|
||||
$title = $item["author-name"].": ".$title;
|
||||
|
||||
|
|
Loading…
Reference in a new issue