diff options
author | Friendika <info@friendika.com> | 2011-04-16 15:48:08 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-16 15:48:08 -0700 |
commit | 12571c42f12610e88e0159e1463de931269e033f (patch) | |
tree | 3aeecbf9115ca5a964cf0374beab84cfc4d2924e /include | |
parent | 06492b76b150beb972cc54cce2740e76937d1544 (diff) | |
download | volse-hubzilla-12571c42f12610e88e0159e1463de931269e033f.tar.gz volse-hubzilla-12571c42f12610e88e0159e1463de931269e033f.tar.bz2 volse-hubzilla-12571c42f12610e88e0159e1463de931269e033f.zip |
we need a profile url. Something.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scrape.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/Scrape.php b/include/Scrape.php index 97e2fb7f1..320e18edb 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -338,6 +338,7 @@ function probe_url($url) { $addr = $orig_url; $network = NETWORK_MAIL; $name = substr($url,0,strpos($url,'@')); + $profile = 'http://' . substr($url,strpos($url,'@')+1); // fix nick $vcard = array('fn' => $name, 'nick' => $name, 'photo' => gravatar_img($url)); $notify = 'smtp'; |