diff options
author | redmatrix <git@macgirvin.com> | 2016-05-22 16:54:30 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-22 16:54:30 -0700 |
commit | de006771c7fe92a889d759c2c75c1473c420ad47 (patch) | |
tree | 157391db6d2d48980719fa07c3d317fcb85ef70c /include/zot.php | |
parent | 2fdd1485985e2f341b413e978cf85edb858fce41 (diff) | |
download | volse-hubzilla-de006771c7fe92a889d759c2c75c1473c420ad47.tar.gz volse-hubzilla-de006771c7fe92a889d759c2c75c1473c420ad47.tar.bz2 volse-hubzilla-de006771c7fe92a889d759c2c75c1473c420ad47.zip |
renamed include files identity.php (channel.php) and Contact.php (connections.php)
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/zot.php b/include/zot.php index f5fb87e12..4b780db2a 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1332,7 +1332,7 @@ function zot_import($arr, $sender_url) { */ function public_recips($msg) { - require_once('include/identity.php'); + require_once('include/channel.php'); $check_mentions = false; $include_sys = false; @@ -3222,7 +3222,6 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { $clean = array(); if($abook['abook_xchan'] && $abook['entry_deleted']) { logger('process_channel_sync_delivery: removing abook entry for ' . $abook['abook_xchan']); - require_once('include/Contact.php'); $r = q("select abook_id, abook_feed from abook where abook_xchan = '%s' and abook_channel = %d and abook_self = 0 limit 1", dbesc($abook['abook_xchan']), @@ -3926,7 +3925,7 @@ function zotinfo($arr) { $ret['site']['accounts'] = account_total(); - require_once('include/identity.php'); + require_once('include/channel.php'); $ret['site']['channels'] = channel_total(); @@ -4421,7 +4420,6 @@ function zot_reply_purge($sender,$recipients) { $arr = $sender; $sender_hash = make_xchan_hash($arr['guid'],$arr['guid_sig']); - require_once('include/Contact.php'); remove_all_xchan_resources($sender_hash); $ret['success'] = true; |