aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-03-19 01:19:11 -0700
committerFriendika <info@friendika.com>2011-03-19 01:19:11 -0700
commit7e33c1072a4a948941e2522afe0123899b0abddd (patch)
treec4c540e85b9c0b17f0a44cfc3d82bafb6bd0dad6 /mod
parent5034d7333eb849e9204d451a496f4fe2e019de62 (diff)
downloadvolse-hubzilla-7e33c1072a4a948941e2522afe0123899b0abddd.tar.gz
volse-hubzilla-7e33c1072a4a948941e2522afe0123899b0abddd.tar.bz2
volse-hubzilla-7e33c1072a4a948941e2522afe0123899b0abddd.zip
stuff to make connecting to diaspora profiles easier
Diffstat (limited to 'mod')
-rw-r--r--mod/follow.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/mod/follow.php b/mod/follow.php
index 689ae8232..4ce3ccb82 100644
--- a/mod/follow.php
+++ b/mod/follow.php
@@ -11,7 +11,7 @@ function follow_post(&$a) {
}
$url = $orig_url = notags(trim($_POST['url']));
-
+ $diaspora = false;
$email_conversant = false;
if($url) {
@@ -28,6 +28,9 @@ function follow_post(&$a) {
$hcard = unamp($link['@attributes']['href']);
if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
$profile = unamp($link['@attributes']['href']);
+ if($link['@attributes']['rel'] === 'http://joindiaspora.com/seed_location')
+ $diaspora = true;
+
}
@@ -90,9 +93,12 @@ function follow_post(&$a) {
}
}
- if(! $profile)
- $profile = $url;
-
+ if(! $profile) {
+ if($diaspora)
+ $profile = $hcard;
+ else
+ $profile = $url;
+ }
if(! x($vcard,'fn'))
if(x($vcard,'nick'))