diff options
author | Mario <mario@mariovavti.com> | 2020-12-01 08:31:50 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-12-01 08:31:50 +0000 |
commit | ce4d664abc7c56582d050c9ed6a9edb3b87472ed (patch) | |
tree | a81c77949c1a56f8fbe372acd8440cc8286a8d4d /Zotlabs/Lib | |
parent | 45b41f07874674311060a8c205cb1bc22ae850db (diff) | |
parent | b89355b9d822da63d0588f1ee25f72b2358c82cc (diff) | |
download | volse-hubzilla-ce4d664abc7c56582d050c9ed6a9edb3b87472ed.tar.gz volse-hubzilla-ce4d664abc7c56582d050c9ed6a9edb3b87472ed.tar.bz2 volse-hubzilla-ce4d664abc7c56582d050c9ed6a9edb3b87472ed.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index f805b92e7..807216400 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -2143,7 +2143,7 @@ class Activity { if(! $s['edited']) $s['edited'] = $s['created']; - $s['title'] = self::bb_content($content,'name'); + $s['title'] = (($response_activity) ? EMPTY_STR : self::bb_content($content,'name')); $s['summary'] = self::bb_content($content,'summary'); $s['body'] = ((self::bb_content($content,'bbcode') && (! $response_activity)) ? self::bb_content($content,'bbcode') : self::bb_content($content,'content')); |