diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-06-18 08:33:30 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-06-18 10:37:56 +0200 |
commit | df228237deb4dad06652a176f8691f611a641eed (patch) | |
tree | af70fce8a265a9707e234e693d6096133d645db1 /Zotlabs | |
parent | 958217dd556fc1c94ee34293ef5a9a555321760e (diff) | |
download | volse-hubzilla-df228237deb4dad06652a176f8691f611a641eed.tar.gz volse-hubzilla-df228237deb4dad06652a176f8691f611a641eed.tar.bz2 volse-hubzilla-df228237deb4dad06652a176f8691f611a641eed.zip |
fix typo
(cherry picked from commit 619b39f9553db3f88b5a8061c423f1eee37bdd3b)
Diffstat (limited to 'Zotlabs')
-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 +} |