diff options
author | zotlabs <mike@macgirvin.com> | 2017-01-28 15:01:19 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-01-28 15:01:19 -0800 |
commit | 5aa0017e91cac135ef8b84c138becb09decb1d58 (patch) | |
tree | c44b5632ab4493bfc8731b7614e8ee66bf260bca /include/security.php | |
parent | f90d5f3dc8b26d5a1fd3e44013385bda9a7361b2 (diff) | |
download | volse-hubzilla-5aa0017e91cac135ef8b84c138becb09decb1d58.tar.gz volse-hubzilla-5aa0017e91cac135ef8b84c138becb09decb1d58.tar.bz2 volse-hubzilla-5aa0017e91cac135ef8b84c138becb09decb1d58.zip |
provide lowlevel xchan storage function to ensure that all non-null rows are initialised
Diffstat (limited to 'include/security.php')
-rw-r--r-- | include/security.php | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/include/security.php b/include/security.php index 2f5de54c7..57b33251f 100644 --- a/include/security.php +++ b/include/security.php @@ -171,19 +171,16 @@ function atoken_create_xchan($xchan) { if($r) return; - $r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_photo_mimetype, xchan_photo_l, xchan_photo_m, xchan_photo_s ) - values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ", - dbesc($xchan['xchan_hash']), - dbesc($xchan['xchan_hash']), - dbesc($xchan['xchan_addr']), - dbesc($xchan['xchan_url']), - dbesc($xchan['xchan_name']), - dbesc($xchan['xchan_network']), - dbesc($xchan['xchan_photo_mimetype']), - dbesc($xchan['xchan_photo_l']), - dbesc($xchan['xchan_photo_m']), - dbesc($xchan['xchan_photo_s']) - ); + $xchan['xchan_guid'] = $xchan['xchan_hash']; + + $store = []; + foreach($xchan as $k => $v) { + if(strpos($k,'xchan_') === 0) { + $store[$k] = $v; + } + } + + $r = xchan_store_lowlevel($store); return true; } |