diff options
author | Mario <mario@mariovavti.com> | 2020-04-23 18:19:25 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-04-23 18:19:25 +0000 |
commit | b7a655917ed1f7caa5b8b3d9b92fdd578c6252c4 (patch) | |
tree | 429a60947cdad2d19b05122f6f55ac8480ed6b7b /Zotlabs/Lib/Enotify.php | |
parent | d8bfa5dd9614a3e7b8c167d2a76f86c30ad51f2d (diff) | |
download | volse-hubzilla-b7a655917ed1f7caa5b8b3d9b92fdd578c6252c4.tar.gz volse-hubzilla-b7a655917ed1f7caa5b8b3d9b92fdd578c6252c4.tar.bz2 volse-hubzilla-b7a655917ed1f7caa5b8b3d9b92fdd578c6252c4.zip |
some work on deprecating ACTIVITY_OBJ_FILE
Diffstat (limited to 'Zotlabs/Lib/Enotify.php')
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 85e90d67c..a4fc8aa75 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -818,6 +818,9 @@ class Enotify { $itemem_text = sprintf( t('repeated %s\'s post'), '[bdi]' . $item['author']['xchan_name'] . '[/bdi]'); } + if(in_array($item['obj_type'], ['Document', 'Video', 'Audio', 'Image'])) { + $itemem_text = t('shared a file with you'); + } } $edit = false; |