Merge branch 'config' into defer-javascript

This commit is contained in:
nonmakina 2021-07-11 11:23:03 +02:00 committed by GitHub
commit b992a926cc
19 changed files with 129 additions and 77 deletions

View file

@ -484,8 +484,11 @@
// Strip superfluous new lines at the end of a post.
$config['strip_superfluous_returns'] = true;
// Strip combining characters from Unicode strings (eg. "Zalgo").
// Strip combining characters from Unicode strings (eg. "Zalgo"). This will impact some non-English languages.
$config['strip_combining_chars'] = true;
// Maximum number of combining characters in a row allowed in Unicode strings so that they can still be used in moderation.
// Requires $config['strip_combining_chars'] = true;
$config['max_combining_chars'] = 0;
// Maximum post body length.
$config['max_body'] = 1800;