diff options
author | Mario <mario@mariovavti.com> | 2022-11-03 13:09:11 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-11-03 13:09:11 +0000 |
commit | e80191d4cdadd38978579edf17bf8188d7729c4e (patch) | |
tree | d7cdbb7a77e22c4bf9ce9d2a1802671acb6687da /Zotlabs/Module/Dreport.php | |
parent | c2a796b6ea4a8af23494e72e6c446ea847bf9627 (diff) | |
download | volse-hubzilla-e80191d4cdadd38978579edf17bf8188d7729c4e.tar.gz volse-hubzilla-e80191d4cdadd38978579edf17bf8188d7729c4e.tar.bz2 volse-hubzilla-e80191d4cdadd38978579edf17bf8188d7729c4e.zip |
fix regression
Diffstat (limited to 'Zotlabs/Module/Dreport.php')
-rw-r--r-- | Zotlabs/Module/Dreport.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Zotlabs/Module/Dreport.php b/Zotlabs/Module/Dreport.php index 759e1acb4..f5ad80eef 100644 --- a/Zotlabs/Module/Dreport.php +++ b/Zotlabs/Module/Dreport.php @@ -56,10 +56,12 @@ class Dreport extends \Zotlabs\Web\Controller { return; } - $r = q("select * from dreport where dreport_xchan = '%s' and (dreport_mid = '%s' or dreport_mid = '%s')", + $r = q("select * from dreport where dreport_xchan = '%s' and (dreport_mid = '%s' or dreport_mid = '%s' or dreport_mid = '%s' or dreport_mid = '%s')", dbesc($channel['channel_hash']), dbesc($mid), - dbesc(str_replace('/item/', '/activity/', $mid)) + dbesc($mid . '#sync'), + dbesc(str_replace('/item/', '/activity/', $mid)), + dbesc(str_replace('/item/', '/activity/', $mid) . '#sync') ); if(! $r) { |