diff options
Diffstat (limited to 'data/config.default.php')
-rw-r--r-- | data/config.default.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/data/config.default.php b/data/config.default.php index b975fac..8c47e0b 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -470,6 +470,21 @@ $filetypes = array( ); /** + * Link protocols that are allowed for newly added bookmarks. + * This prevents i.e. adding javascript: links. + * + * @link http://en.wikipedia.org/wiki/URI_scheme + * + * @var array + */ +$allowedProtocols = array( + 'ftp', 'ftps', + 'http', 'https', + 'mailto', 'nntp', + 'xmpp' +); + +/** * Enable the "common bookmark description" functionality * * @var boolean |