Merge pull request #1181 from pixelfed/frontend-ui-refactor

Rename .env var, based on feedback from https://mastodon.social/users
This commit is contained in:
daniel 2019-04-23 18:31:32 -06:00 committed by GitHub
commit 5638afb4bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -280,6 +280,6 @@ return [
'oauth_enabled' => env('OAUTH_ENABLED', false),
'sanitizer' => [
'strict_mode' => env('SANITIZER_STRICT', true)
'restrict_html_types' => env('RESTRICT_HTML_TYPES', true)
],
];

View File

@ -67,7 +67,7 @@ return [
|
*/
'HTML.Allowed' => env('SANITIZER_STRICT', true) ?
'HTML.Allowed' => env('RESTRICT_HTML_TYPES', true) ?
'a[href|title|rel],p,span,br' :
'a[href|title|rel],p,span,strong,em,i,h1,h2,h3,h4,h5,ul,ol,li,br',