diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-04-12 09:29:51 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-04-12 09:29:51 +0200 |
commit | 7ce4175876ce13727432dc839938bb8e486ef406 (patch) | |
tree | 5128e5c5d13629628c0e50b4a91935cfeda44a20 /Zotlabs/Module/Dirsearch.php | |
parent | 03bdbfa705ba490b0450f063753100557f5d8bae (diff) | |
download | volse-hubzilla-7ce4175876ce13727432dc839938bb8e486ef406.tar.gz volse-hubzilla-7ce4175876ce13727432dc839938bb8e486ef406.tar.bz2 volse-hubzilla-7ce4175876ce13727432dc839938bb8e486ef406.zip |
initial commit directory sync rewrite - should work but still requires lots of cleanup
Diffstat (limited to 'Zotlabs/Module/Dirsearch.php')
-rw-r--r-- | Zotlabs/Module/Dirsearch.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Zotlabs/Module/Dirsearch.php b/Zotlabs/Module/Dirsearch.php index c0df8a1e3..633ae69f0 100644 --- a/Zotlabs/Module/Dirsearch.php +++ b/Zotlabs/Module/Dirsearch.php @@ -215,9 +215,11 @@ class Dirsearch extends Controller { if($sync) { $spkt = array('transactions' => array()); - $r = q("select * from updates where ud_date >= '%s' and ud_guid != '' and ud_addr != '' order by ud_date desc", + + $r = q("select * from updates where ud_date >= '%s' order by ud_date desc", dbesc($sync) ); + if($r) { foreach($r as $rr) { $flags = array(); @@ -235,6 +237,7 @@ class Dirsearch extends Controller { ); } } + json_return_and_die($spkt); } else { |