diff options
author | friendica <info@friendica.com> | 2013-02-07 14:49:09 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-07 14:49:09 -0800 |
commit | ce2fd234618366d13c8ba6991c2f2b1d88d36c90 (patch) | |
tree | 3c98dab1ee1365e68f27f6a25d49396b66d92df6 /include | |
parent | 1e665f4da10dcd948241994a64f325c45762049a (diff) | |
download | volse-hubzilla-ce2fd234618366d13c8ba6991c2f2b1d88d36c90.tar.gz volse-hubzilla-ce2fd234618366d13c8ba6991c2f2b1d88d36c90.tar.bz2 volse-hubzilla-ce2fd234618366d13c8ba6991c2f2b1d88d36c90.zip |
this should fix the auto-friend stuff
Diffstat (limited to 'include')
-rw-r--r-- | include/zot.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/zot.php b/include/zot.php index 5afa9d496..31974a8c6 100644 --- a/include/zot.php +++ b/include/zot.php @@ -272,8 +272,9 @@ function zot_refresh($them,$channel = null) { intval($channel['channel_id']), intval(ABOOK_FLAG_SELF) ); + if($r) { - $y = q("update abook set abook_their_perms = %d + $y = q("update abook set abook_their_perms = %d where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d) limit 1", intval($their_perms), @@ -291,8 +292,9 @@ function zot_refresh($them,$channel = null) { intval($channel['channel_id']), intval(ABOOK_FLAG_SELF) ); + if($z) - $default_perms = intval($z[0]['my_perms']); + $default_perms = intval($z[0]['abook_my_perms']); $y = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_their_perms, abook_my_perms, abook_created, abook_updated, abook_flags ) values ( %d, %d, '%s', %d, %d, '%s', '%s', %d )", intval($channel['channel_account_id']), @@ -304,7 +306,9 @@ function zot_refresh($them,$channel = null) { dbesc(datetime_convert()), intval(($default_perms) ? 0 : ABOOK_FLAG_PENDING) ); + if($y) { + logger("New introduction received for {$channel['channel_name']}"); if($default_perms) { // send back a permissions update for auto-friend/auto-permissions |