mirror of
https://github.com/friendica/friendica
synced 2025-04-26 16:30:12 +00:00
New post class in model classes
This commit is contained in:
parent
3ab4e20fe6
commit
b0d1a295fe
9 changed files with 77 additions and 76 deletions
|
@ -340,7 +340,7 @@ class Tag
|
|||
public static function createImplicitMentions(int $uri_id, int $parent_uri_id)
|
||||
{
|
||||
// Always mention the direct parent author
|
||||
$parent = Item::selectFirst(['author-link', 'author-name'], ['uri-id' => $parent_uri_id]);
|
||||
$parent = Post::selectFirst(['author-link', 'author-name'], ['uri-id' => $parent_uri_id]);
|
||||
self::store($uri_id, self::IMPLICIT_MENTION, $parent['author-name'], $parent['author-link']);
|
||||
|
||||
if (DI::config()->get('system', 'disable_implicit_mentions')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue