Dant try to add mentions on starting posts
This commit is contained in:
parent
eb4c14695c
commit
a1fda8f74a
|
@ -333,6 +333,10 @@ class Tag
|
||||||
*/
|
*/
|
||||||
public static function createImplicitMentions(int $uri_id, int $parent_uri_id)
|
public static function createImplicitMentions(int $uri_id, int $parent_uri_id)
|
||||||
{
|
{
|
||||||
|
if ($uri_id == $parent_uri_id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Always mention the direct parent author
|
// Always mention the direct parent author
|
||||||
$parent = Item::selectFirst(['author-link', 'author-name'], ['uri-id' => $parent_uri_id]);
|
$parent = Item::selectFirst(['author-link', 'author-name'], ['uri-id' => $parent_uri_id]);
|
||||||
self::store($uri_id, self::IMPLICIT_MENTION, $parent['author-name'], $parent['author-link']);
|
self::store($uri_id, self::IMPLICIT_MENTION, $parent['author-name'], $parent['author-link']);
|
||||||
|
|
Loading…
Reference in a new issue