diff options
author | friendica <info@friendica.com> | 2012-04-02 21:01:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-02 21:01:19 -0700 |
commit | f4721955dbfb23992c4acdadd05108cb1b92e2af (patch) | |
tree | a270213a6852a5689ce43c72ffc0c3bc2d333b23 /mod/dfrn_notify.php | |
parent | e1de2e3de0142c350fd74ea2161117ed61654dd6 (diff) | |
download | volse-hubzilla-f4721955dbfb23992c4acdadd05108cb1b92e2af.tar.gz volse-hubzilla-f4721955dbfb23992c4acdadd05108cb1b92e2af.tar.bz2 volse-hubzilla-f4721955dbfb23992c4acdadd05108cb1b92e2af.zip |
more ssl policy fixes and prevent delivery to soapbox when using local delivery
Diffstat (limited to 'mod/dfrn_notify.php')
-rwxr-xr-x | mod/dfrn_notify.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 4ce324652..5d44e8144 100755 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -106,7 +106,6 @@ function dfrn_notify_post(&$a) { if($ssl_policy == 'self' && strstr($importer['url'],'https:')) { $ssl_changed = true; $importer['url'] = str_replace('https:','http:',$importer['url']); - $importer['nurl'] = normalise_link($importer['url']); $importer['request'] = str_replace('https:','http:',$importer['request']); $importer['notify'] = str_replace('https:','http:',$importer['notify']); $importer['poll'] = str_replace('https:','http:',$importer['poll']); @@ -117,7 +116,6 @@ function dfrn_notify_post(&$a) { if($ssl_policy == 'full' && strstr($importer['url'],'http:')) { $ssl_changed = true; $importer['url'] = str_replace('http:','https:',$importer['url']); - $importer['nurl'] = normalise_link($importer['url']); $importer['request'] = str_replace('http:','https:',$importer['request']); $importer['notify'] = str_replace('http:','https:',$importer['notify']); $importer['poll'] = str_replace('http:','https:',$importer['poll']); @@ -129,9 +127,6 @@ function dfrn_notify_post(&$a) { q("update contact set url = '%s', nurl = '%s', - photo = '%s', - thumb = '%s', - micro = '%s', request = '%s', notify = '%s', poll = '%s', |