diff options
author | Mario <mario@mariovavti.com> | 2020-11-28 10:35:08 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-12-01 09:38:17 +0100 |
commit | 87ecc61fb4f61eecbff1a33bf34d02a5d74eccce (patch) | |
tree | d76f36203ac9a0a4b54e930b01ec015b36fdb750 /Zotlabs/Lib/Activity.php | |
parent | 0f6166da004317045bae5430140c70ee0d60aad1 (diff) | |
download | volse-hubzilla-87ecc61fb4f61eecbff1a33bf34d02a5d74eccce.tar.gz volse-hubzilla-87ecc61fb4f61eecbff1a33bf34d02a5d74eccce.tar.bz2 volse-hubzilla-87ecc61fb4f61eecbff1a33bf34d02a5d74eccce.zip |
dismiss title in response activity
(cherry picked from commit eb2ad3fc438544192cda95d88a4c2a54ec1e0014)
(cherry picked from commit b89355b9d822da63d0588f1ee25f72b2358c82cc)
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-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')); |