diff options
author | redmatrix <git@macgirvin.com> | 2016-06-23 18:12:26 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-23 18:12:26 -0700 |
commit | b19bbf54736b83afaa26aa11ba95c7816c7f8599 (patch) | |
tree | 4b6262bb04bbfd05ad53abf5da6f679b6e4a43f4 /include/channel.php | |
parent | e5c66d94f22d0efcdec0796872e9be81bff1bb4e (diff) | |
download | volse-hubzilla-b19bbf54736b83afaa26aa11ba95c7816c7f8599.tar.gz volse-hubzilla-b19bbf54736b83afaa26aa11ba95c7816c7f8599.tar.bz2 volse-hubzilla-b19bbf54736b83afaa26aa11ba95c7816c7f8599.zip |
change AbConfig to use channel_id instead of channel_hash; which was a mistake in retrospect
Diffstat (limited to 'include/channel.php')
-rw-r--r-- | include/channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channel.php b/include/channel.php index a0424ee39..a7624f060 100644 --- a/include/channel.php +++ b/include/channel.php @@ -516,7 +516,7 @@ function identity_basic_export($channel_id, $items = false) { for($x = 0; $x < count($ret['abook']); $x ++) { $xchans[] = $ret['abook'][$x]['abook_chan']; - $abconfig = load_abconfig($ret['channel']['channel_hash'],$ret['abook'][$x]['abook_xchan']); + $abconfig = load_abconfig($channel_id,$ret['abook'][$x]['abook_xchan']); if($abconfig) $ret['abook'][$x]['abconfig'] = $abconfig; } |