diff options
author | Mario <mario@mariovavti.com> | 2021-01-09 13:05:31 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-09 13:05:31 +0000 |
commit | 0e2af403298599737b41a44a0b6b3e0a1204b108 (patch) | |
tree | f218bdce3fae9743761e88bec11cefff21656a6c | |
parent | 7f51ff0a8d9a63773a176a13d5202693c35a5a67 (diff) | |
download | volse-hubzilla-0e2af403298599737b41a44a0b6b3e0a1204b108.tar.gz volse-hubzilla-0e2af403298599737b41a44a0b6b3e0a1204b108.tar.bz2 volse-hubzilla-0e2af403298599737b41a44a0b6b3e0a1204b108.zip |
fix error in sql query
-rw-r--r-- | Zotlabs/Module/Owa.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Owa.php b/Zotlabs/Module/Owa.php index d6aeb8af5..9a3513f34 100644 --- a/Zotlabs/Module/Owa.php +++ b/Zotlabs/Module/Owa.php @@ -39,7 +39,7 @@ class Owa extends Controller { $found = discover_by_webbie(str_replace('acct:','',$keyId)); if ($found) { $r = q("SELECT * FROM hubloc LEFT JOIN xchan ON hubloc_hash = xchan_hash - WHERE OR hubloc_id_url = '%s'", + WHERE hubloc_id_url = '%s'", dbesc($keyId) ); } |