From 89caa18fe0293765bbf030264496fbaa7146a824 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 10 Dec 2016 07:05:35 +0100 Subject: [PATCH] add the kickstart allowed protocols to htconfig.tpl. 2932 follow-up --- view/templates/htconfig.tpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/view/templates/htconfig.tpl b/view/templates/htconfig.tpl index df793197ce..316f9bc01f 100644 --- a/view/templates/htconfig.tpl +++ b/view/templates/htconfig.tpl @@ -95,3 +95,6 @@ $a->config['system']['no_regfullname'] = true; // Location of the global directory $a->config['system']['directory'] = 'http://dir.friendi.ca'; + +// Allowed protocols in link URLs; HTTP protocols always are accepted +$a->config['system']['allowed_link_protocols'] = array('ftp', 'ftps', 'mailto', 'cid', 'gopher');