diff options
author | friendica <info@friendica.com> | 2012-03-14 21:58:54 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-14 21:58:54 -0700 |
commit | b06c5983a4dae26dd24aecd7473bad98558cd6fc (patch) | |
tree | 44eb74a6943ecc26a795f136e79d653c39955d63 | |
parent | b44533e9fb685bb4b38073a90003d61911e1e24e (diff) | |
download | volse-hubzilla-b06c5983a4dae26dd24aecd7473bad98558cd6fc.tar.gz volse-hubzilla-b06c5983a4dae26dd24aecd7473bad98558cd6fc.tar.bz2 volse-hubzilla-b06c5983a4dae26dd24aecd7473bad98558cd6fc.zip |
don't allow multiple friends with http/https same person, don't show mail2 coming soon unless person is allowed to have email contacts
-rwxr-xr-x | mod/dfrn_request.php | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index 4acb5c9bb..c2d37dac7 100755 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -77,9 +77,10 @@ function dfrn_request_post(&$a) { * Lookup the contact based on their URL (which is the only unique thing we have at the moment) */ - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `self` = 0 LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND (`url` = '%s' OR `nurl` = '%s') AND `self` = 0 LIMIT 1", intval(local_user()), - dbesc($dfrn_url) + dbesc($dfrn_url), + dbesc(normalise_link($dfrn_url)) ); if(count($r)) { @@ -668,7 +669,21 @@ function dfrn_request_content(&$a) { $page_desc .= t("Please enter your 'Identity Address' from one of the following supported communications networks:"); - $emailnet = t("<strike>Connect as an email follower</strike> \x28Coming soon\x29"); + // see if we are allowed to have NETWORK_MAIL2 contacts + + $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1); + if(get_config('system','dfrn_only')) + $mail_disabled = 1; + + if(! $mail_disabled) { + $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1", + intval($a->profile['uid']) + ); + if(! count($r)) + $mail_disabled = 1; + } + + $emailnet = (($mail_disabled) ? '' : t("<strike>Connect as an email follower</strike> \x28Coming soon\x29")); $invite_desc = t('If you are not yet a member of the free social web, <a href="http://dir.friendica.com/siteinfo">follow this link to find a public Friendica site and join us today</a>.'); |