mirror of
https://github.com/friendica/friendica
synced 2024-11-18 04:23:41 +00:00
Fix code standards
This commit is contained in:
parent
cda1b91b77
commit
7432e47f7a
2 changed files with 10 additions and 10 deletions
|
@ -1448,7 +1448,7 @@ class Item
|
|||
}
|
||||
|
||||
$engagement_uri_id = Post\Engagement::storeFromItem($posted_item);
|
||||
|
||||
|
||||
if (in_array($posted_item['gravity'], [self::GRAVITY_PARENT, self::GRAVITY_COMMENT])) {
|
||||
Post\SearchIndex::insert($posted_item['uri-id'], $posted_item['network'], $posted_item['private'], $posted_item['created']);
|
||||
} elseif ($posted_item['verb'] == Activity::ANNOUNCE) {
|
||||
|
@ -1618,7 +1618,7 @@ class Item
|
|||
}
|
||||
|
||||
$languages = $item['language'] ? array_keys(json_decode($item['language'], true)) : [];
|
||||
|
||||
|
||||
foreach (Tag::getUIDListByURIId($item['uri-id']) as $uid => $tags) {
|
||||
if (!empty($languages)) {
|
||||
$keep = false;
|
||||
|
|
|
@ -188,7 +188,7 @@ class Engagement
|
|||
|
||||
if (!empty($item['author-gsid'])) {
|
||||
$gserver = DBA::selectFirst('gserver', ['platform', 'nurl'], ['id' => $item['author-gsid']]);
|
||||
$platform = preg_replace( '/[\W]/', '', $gserver['platform'] ?? '');
|
||||
$platform = preg_replace('/[\W]/', '', $gserver['platform'] ?? '');
|
||||
if (!empty($platform)) {
|
||||
$body .= ' platform_' . $platform;
|
||||
}
|
||||
|
@ -197,7 +197,7 @@ class Engagement
|
|||
|
||||
if (($item['owner-contact-type'] == Contact::TYPE_COMMUNITY) && !empty($item['owner-gsid']) && ($item['owner-gsid'] != ($item['author-gsid'] ?? 0))) {
|
||||
$gserver = DBA::selectFirst('gserver', ['platform', 'nurl'], ['id' => $item['owner-gsid']]);
|
||||
$platform = preg_replace( '/[\W]/', '', $gserver['platform'] ?? '');
|
||||
$platform = preg_replace('/[\W]/', '', $gserver['platform'] ?? '');
|
||||
if (!empty($platform) && !strpos($body, 'platform_' . $platform)) {
|
||||
$body .= ' platform_' . $platform;
|
||||
}
|
||||
|
@ -285,13 +285,13 @@ class Engagement
|
|||
case Contact::TYPE_COMMUNITY:
|
||||
$prefix = ' group_';
|
||||
break;
|
||||
}
|
||||
$nick = $prefix . $reshare['author-nick'];
|
||||
$addr = $prefix . $reshare['author-addr'];
|
||||
}
|
||||
$nick = $prefix . $reshare['author-nick'];
|
||||
$addr = $prefix . $reshare['author-addr'];
|
||||
|
||||
if (stripos($text, $addr) === false) {
|
||||
$text .= $nick . $addr;
|
||||
}
|
||||
if (stripos($text, $addr) === false) {
|
||||
$text .= $nick . $addr;
|
||||
}
|
||||
}
|
||||
DBA::close($result);
|
||||
|
||||
|
|
Loading…
Reference in a new issue