mirror of
https://github.com/friendica/friendica
synced 2025-04-25 20:30:11 +00:00
Improve quote share ("message_id" added)
This commit is contained in:
parent
fe442683ef
commit
48182a95fb
8 changed files with 27 additions and 27 deletions
|
@ -883,7 +883,7 @@ class Processor
|
|||
return '';
|
||||
}
|
||||
|
||||
$shared_item = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'title', 'body'], ['id' => $id]);
|
||||
$shared_item = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'uri', 'title', 'body'], ['id' => $id]);
|
||||
if (!DBA::isResult($shared_item)) {
|
||||
return '';
|
||||
}
|
||||
|
@ -894,7 +894,8 @@ class Processor
|
|||
$shared_item['author-avatar'],
|
||||
$shared_item['plink'],
|
||||
$shared_item['created'],
|
||||
$shared_item['guid']
|
||||
$shared_item['guid'],
|
||||
$shared_item['uri'],
|
||||
);
|
||||
|
||||
if (!empty($shared_item['title'])) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue