aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-01-05 13:25:43 -0800
committerfriendica <info@friendica.com>2012-01-05 13:25:43 -0800
commit5b809328af800e73990e7a056d2a6d883a67bd25 (patch)
treec4720eeaaf960ee39fc813a0a6dc102b6bad4e26
parent2f73be326ea518b5521f5b52c9ca9c080cff47a7 (diff)
downloadvolse-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.txt2
-rw-r--r--boot.php2
-rw-r--r--include/diaspora.php25
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
diff --git a/boot.php b/boot.php
index b06c2d0bf..1f2b47b2e 100644
--- a/boot.php
+++ b/boot.php
@@ -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);