diff options
author | Wave <wave72@users.noreply.github.com> | 2016-07-22 10:55:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-22 10:55:02 +0200 |
commit | 744ad84714fe0f7a3d90250a4ff02dc4327b9061 (patch) | |
tree | 595fb74ec9ea0bc7130d18bd7993d719a222d343 /mod/follow.php | |
parent | c38c79d71c8ef70ef649f83e322f1984b75ee2dd (diff) | |
parent | 7d897a3f03bd57ed556433eb84a41963ba44e02e (diff) | |
download | volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.tar.gz volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.tar.bz2 volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.zip |
Merge pull request #6 from redmatrix/dev
Dev
Diffstat (limited to 'mod/follow.php')
-rw-r--r-- | mod/follow.php | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/mod/follow.php b/mod/follow.php deleted file mode 100644 index 207a99dd7..000000000 --- a/mod/follow.php +++ /dev/null @@ -1,60 +0,0 @@ -<?php - - -require_once('include/follow.php'); - -function follow_init(&$a) { - - if(! local_channel()) { - return; - } - - $uid = local_channel(); - $url = notags(trim($_REQUEST['url'])); - $return_url = $_SESSION['return_url']; - $confirm = intval($_REQUEST['confirm']); - - $channel = App::get_channel(); - - $result = new_contact($uid,$url,$channel,true,$confirm); - - if($result['success'] == false) { - if($result['message']) - notice($result['message']); - goaway($return_url); - } - - info( t('Channel added.') . EOL); - - $clone = array(); - foreach($result['abook'] as $k => $v) { - if(strpos($k,'abook_') === 0) { - $clone[$k] = $v; - } - } - unset($clone['abook_id']); - unset($clone['abook_account']); - unset($clone['abook_channel']); - - $abconfig = load_abconfig($channel['channel_hash'],$clone['abook_xchan']); - if($abconfig) - $clone['abconfig'] = $abconfig; - - build_sync_packet(0 /* use the current local_channel */, array('abook' => array($clone))); - - - // If we can view their stream, pull in some posts - - if(($result['abook']['abook_their_perms'] & PERMS_R_STREAM) || ($result['abook']['xchan_network'] === 'rss')) - proc_run('php','include/onepoll.php',$result['abook']['abook_id']); - - goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?f=&follow=1'); - -} - -function follow_content(&$a) { - - if(! local_channel()) { - return login(); - } -}
\ No newline at end of file |