aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-06-29 20:35:56 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-06-29 20:35:56 -0700
commit0b347ccc14a384bfcbda343aacc1dfa1b7ddd740 (patch)
tree0b96e2816079fafdf3d8fa50ad130229e8733488 /include/items.php
parent2072ea721fa26b8e5f7dd4067434951b738de92b (diff)
downloadvolse-hubzilla-0b347ccc14a384bfcbda343aacc1dfa1b7ddd740.tar.gz
volse-hubzilla-0b347ccc14a384bfcbda343aacc1dfa1b7ddd740.tar.bz2
volse-hubzilla-0b347ccc14a384bfcbda343aacc1dfa1b7ddd740.zip
turn the connection filter into a feature.
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php
index cef303d2e..8bf6fce6b 100755
--- a/include/items.php
+++ b/include/items.php
@@ -3308,12 +3308,17 @@ function post_is_importable($item,$abook) {
if(! $abook)
return true;
+
+ if(($abook['abook_channel']) && (! feature_enabled($abook['abook_channel'],'connfilter')))
+ return true;
+
if(! $item)
return false;
if((! $abook['abook_incl']) && (! $abook['abook_excl']))
return true;
+
require_once('include/html2plain.php');
$text = prepare_text($item['body'],$item['mimetype']);
$text = html2plain($text);