diff options
author | M.Dent <dentm42@dm42.net> | 2018-08-10 12:44:57 -0400 |
---|---|---|
committer | DM42.Net (Matt Dent) <dentm42@dm42.net> | 2018-08-10 13:54:07 -0400 |
commit | e587fe5ce84ed5c248287eb55c6ae193ebd3222b (patch) | |
tree | 29ad164f0c6d4aca069567dde48ee8ac6f0cc47a /Zotlabs/Module/Settings | |
parent | 48e74035f26ed8228ae834c633056fdc87668b71 (diff) | |
download | volse-hubzilla-e587fe5ce84ed5c248287eb55c6ae193ebd3222b.tar.gz volse-hubzilla-e587fe5ce84ed5c248287eb55c6ae193ebd3222b.tar.bz2 volse-hubzilla-e587fe5ce84ed5c248287eb55c6ae193ebd3222b.zip |
Add user_id = local_channel() to the where clause of updates
Diffstat (limited to 'Zotlabs/Module/Settings')
-rw-r--r-- | Zotlabs/Module/Settings/Oauth2.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/Settings/Oauth2.php b/Zotlabs/Module/Settings/Oauth2.php index 985095115..52da20598 100644 --- a/Zotlabs/Module/Settings/Oauth2.php +++ b/Zotlabs/Module/Settings/Oauth2.php @@ -45,14 +45,15 @@ class Oauth2 { grant_types = '%s', scope = '%s', user_id = %d - WHERE client_id='%s'", + WHERE client_id='%s' and user_id = %s", dbesc($name), dbesc($secret), dbesc($redirect), dbesc($grant), dbesc($scope), intval(local_channel()), - dbesc($name)); + dbesc($name), + intval(local_channel())); } else { $r = q("INSERT INTO oauth_clients (client_id, client_secret, redirect_uri, grant_types, scope, user_id) VALUES ('%s','%s','%s','%s','%s',%d)", |