diff options
author | redmatrix <git@macgirvin.com> | 2016-08-02 19:31:31 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-08-02 19:32:39 -0700 |
commit | 1e988b1fea8cb7597229376c3e73c1886df61b29 (patch) | |
tree | 5bd7f243fdc2537258a92202ab743a1a8405221c | |
parent | ae5c10a71cd29722f63b379b62801dea52a9ab8f (diff) | |
download | volse-hubzilla-1e988b1fea8cb7597229376c3e73c1886df61b29.tar.gz volse-hubzilla-1e988b1fea8cb7597229376c3e73c1886df61b29.tar.bz2 volse-hubzilla-1e988b1fea8cb7597229376c3e73c1886df61b29.zip |
missing comma in atoken update sql
-rw-r--r-- | Zotlabs/Module/Settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index b1258e049..4e3de2c51 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -148,7 +148,7 @@ class Settings extends \Zotlabs\Web\Controller { return; } if($atoken_id) { - $r = q("update atoken set atoken_name = '%s', atoken_token = '%s' atoken_expires = '%s' + $r = q("update atoken set atoken_name = '%s', atoken_token = '%s', atoken_expires = '%s' where atoken_id = %d and atoken_uid = %d", dbesc($name), dbesc($token), |