mirror of
https://github.com/friendica/friendica
synced 2025-04-25 14:30:10 +00:00
Cascade on author deletion
This commit is contained in:
parent
4d617c9c48
commit
bb52e5a804
3 changed files with 3 additions and 3 deletions
|
@ -759,7 +759,7 @@ class Processor
|
|||
public static function createEvent(array $activity, array $item): int
|
||||
{
|
||||
$event['summary'] = HTML::toBBCode($activity['name'] ?: $activity['summary']);
|
||||
$event['desc'] = HTML::toBBCode($activity['content']);
|
||||
$event['desc'] = HTML::toBBCode($activity['content'] ?? '');
|
||||
if (!empty($activity['start-time'])) {
|
||||
$event['start'] = DateTimeFormat::utc($activity['start-time']);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue