diff options
author | friendica <info@friendica.com> | 2012-01-05 13:25:43 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-05 13:25:43 -0800 |
commit | 5b809328af800e73990e7a056d2a6d883a67bd25 (patch) | |
tree | c4720eeaaf960ee39fc813a0a6dc102b6bad4e26 | |
parent | 2f73be326ea518b5521f5b52c9ca9c080cff47a7 (diff) | |
download | volse-hubzilla-5b809328af800e73990e7a056d2a6d883a67bd25.tar.gz volse-hubzilla-5b809328af800e73990e7a056d2a6d883a67bd25.tar.bz2 volse-hubzilla-5b809328af800e73990e7a056d2a6d883a67bd25.zip |
send diaspora share notification back to originator for auto friending
-rw-r--r-- | INSTALL.txt | 2 | ||||
-rw-r--r-- | boot.php | 2 | ||||
-rw-r--r-- | include/diaspora.php | 25 |
3 files changed, 6 insertions, 23 deletions
diff --git a/INSTALL.txt b/INSTALL.txt index 053c33902..70027dc4c 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -38,7 +38,7 @@ with the Diaspora network and improved security. - PHP *command line* access with register_argc_argv set to true in the php.ini file [or see 'poormancron' in section 8] - - curl, gd, mysql, mbstring, mcrypt, and openssl extensions + - curl, gd (with at least jpeg support), mysql, mbstring, mcrypt, and openssl extensions - some form of email server or email gateway such that PHP mail() works @@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '2.3.1216' ); +define ( 'FRIENDICA_VERSION', '2.3.1217' ); define ( 'DFRN_PROTOCOL_VERSION', '2.22' ); define ( 'DB_UPDATE_VERSION', 1115 ); diff --git a/include/diaspora.php b/include/diaspora.php index f32113668..5a19400da 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -610,6 +610,10 @@ function diaspora_request($importer,$xml) { dbesc(datetime_convert()), intval($contact_record['id']) ); + + $u = q("select * from user where id = %d limit 1",intval($importer['uid'])); + if($u) + $ret = diaspora_share($u[0],$contact_record); } return; @@ -1781,27 +1785,6 @@ function diaspora_profile($importer,$xml) { } - - - - - - - - - - - - - - - - - - - - - function diaspora_share($me,$contact) { $a = get_app(); $myaddr = $me['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3); |