aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-01 04:17:10 -0700
committerfriendica <info@friendica.com>2014-09-01 04:17:10 -0700
commit76a72a997d710f4cd53822313260fb259efb63cf (patch)
tree21f9346c94a87f5612c59ad5d057b91362d79188 /include
parent2a37d99958d5591d5b9ccfc9bc615ee0588a6036 (diff)
downloadvolse-hubzilla-76a72a997d710f4cd53822313260fb259efb63cf.tar.gz
volse-hubzilla-76a72a997d710f4cd53822313260fb259efb63cf.tar.bz2
volse-hubzilla-76a72a997d710f4cd53822313260fb259efb63cf.zip
honour the feed_contacts setting
Diffstat (limited to 'include')
-rw-r--r--include/follow.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/follow.php b/include/follow.php
index 102d84605..d1c6afbee 100644
--- a/include/follow.php
+++ b/include/follow.php
@@ -176,6 +176,11 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
}
if($is_http) {
+ if(! intval(get_config('system','feed_contacts'))) {
+ $result['message'] = t('Protocol disabled.');
+ return $result;
+ }
+
$r = q("select count(*) as total from abook where abook_account = %d and abook_network = 'rss'",
intval($aid)
);