aboutsummaryrefslogblamecommitdiffstats
path: root/mod/follow.php
blob: c07c210f640bd9836599346b06a45fe02dd31173 (plain) (tree)
1
2
3
4
5
6
7
8
9

     
 
                                   
 
                           


                                                       
                       

         
                            
                                              

                                              
                                                                
 


                                                   
                                    
         
 
                                        
 
                                                                          
 
 
<?php


require_once('include/follow.php');

function follow_init(&$a) {

	if(! local_user()) {
		notice( t('Permission denied.') . EOL);
		return;
	}

	$uid = local_user();
	$url = notags(trim($_REQUEST['url']));
	$return_url = $_SESSION['return_url'];

	$result = new_contact($uid,$url,$a->get_channel(),true);

	if($result['success'] == false) {
		if($result['message'])
			notice($result['message']);
		goaway($return_url);
	}

	info( t('Channel added') . EOL);

	goaway(z_root() . '/connections/' . $result['abook']['abook_id']);

}