diff options
author | Mario <mario@mariovavti.com> | 2020-10-01 11:51:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-01 11:51:20 +0000 |
commit | 86117c88595cf97a6173fabcb9e3b0d5ec6b1d09 (patch) | |
tree | e078cc073bc8bccd2547cd8ac23aa62dd43446c0 /Zotlabs/Lib/Libzot.php | |
parent | 96c4c72ee36ebb19252be724ddb485a05337cb23 (diff) | |
download | volse-hubzilla-86117c88595cf97a6173fabcb9e3b0d5ec6b1d09.tar.gz volse-hubzilla-86117c88595cf97a6173fabcb9e3b0d5ec6b1d09.tar.bz2 volse-hubzilla-86117c88595cf97a6173fabcb9e3b0d5ec6b1d09.zip |
more delete fixes
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 9b4b05878..87da5ff7a 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -2116,11 +2116,6 @@ class Libzot { $item_found = false; $post_id = 0; - $m = parse_url($item['mid']); - unset($m['fragment']); - $normalised = unparse_url($m); - - // reactions such as like and dislike could have an mid with /activity/ in it. // Check for both forms in order to prevent duplicates. @@ -2129,8 +2124,8 @@ class Libzot { dbesc($sender), dbesc($sender), dbesc($sender), - dbesc($normalised), - dbesc(str_replace('/activity/', '/item/', $normalised)), + dbesc(str_replace('/activity/', '/item/', $item['mid'])), + dbesc(str_replace('/item/', '/activity/', $item['mid'])), intval($uid) ); |