diff --git a/mod/friendica.php b/mod/friendica.php index f613dfd39..230ffd8bc 100644 --- a/mod/friendica.php +++ b/mod/friendica.php @@ -104,6 +104,16 @@ function friendica_content(App $a) { else $o .= '
' . t('No installed plugins/addons/apps') . '
'; + $blocklist = Config::get('system', 'blocklist'); + if (count($blocklist)) { + $o .= ''. t('On this server the following remote servers are blocked.') .'
'; + $o .= ''. t('Blocked URL') .' | '. t('Reason for the block') .' |
---|---|
'. $b['URL'] .' | '. $b['reason'] .' |