diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-06-18 10:33:30 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-06-18 10:33:30 +0200 |
commit | 619b39f9553db3f88b5a8061c423f1eee37bdd3b (patch) | |
tree | bb93f3a0bea4222f87e82489d7b3c9706e1c1868 /Zotlabs/Lib/Activity.php | |
parent | c0b9ab930d716178df5f27dc92d91ef32f1e0f0a (diff) | |
download | volse-hubzilla-619b39f9553db3f88b5a8061c423f1eee37bdd3b.tar.gz volse-hubzilla-619b39f9553db3f88b5a8061c423f1eee37bdd3b.tar.bz2 volse-hubzilla-619b39f9553db3f88b5a8061c423f1eee37bdd3b.zip |
fix typo
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index bc86ae0e0..2998dbe98 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -1570,7 +1570,7 @@ class Activity { $s['verb'] = self::activity_decode_mapper($act->type); - if($act->type === 'Tombstone' || $act-type === 'Delete' || ($act->type === 'Create' && $act->obj['type'] === 'Tombstone')) { + if($act->type === 'Tombstone' || $act->type === 'Delete' || ($act->type === 'Create' && $act->obj['type'] === 'Tombstone')) { $s['item_deleted'] = 1; } @@ -2253,4 +2253,4 @@ class Activity { } -}
\ No newline at end of file +} |