Add mininum post length configuration value to combat spam. Note that the posts with 0 length are still allowed in order to allow image only posts for /layer/. Fix paths for spoiler and deleted images. Change flood filters so that moderators are not restricted by them.
This commit is contained in:
parent
454acf0566
commit
f758139c87
|
@ -457,6 +457,8 @@
|
|||
|
||||
// Maximum post body length.
|
||||
$config['max_body'] = 1800;
|
||||
// Minimum post body length.
|
||||
$config['min_body'] = 30;
|
||||
// Maximum number of post body lines to show on the index page.
|
||||
$config['body_truncate'] = 15;
|
||||
// Maximum number of characters to show on the index page.
|
||||
|
@ -778,9 +780,9 @@
|
|||
// Location of above images.
|
||||
$config['file_thumb'] = 'static/%s';
|
||||
// Location of thumbnail to use for spoiler images.
|
||||
$config['spoiler_image'] = 'static/spoiler.png';
|
||||
$config['spoiler_image'] = '/static/spoiler.png';
|
||||
// Location of thumbnail to use for deleted images.
|
||||
$config['image_deleted'] = 'static/deleted.png';
|
||||
$config['image_deleted'] = '/static/deleted.png';
|
||||
|
||||
// When a thumbnailed image is going to be the same (in dimension), just copy the entire file and use
|
||||
// that as a thumbnail instead of resizing/redrawing.
|
||||
|
@ -1489,7 +1491,8 @@
|
|||
$config['mod']['postunoriginal'] = ADMIN;
|
||||
// Bypass flood check
|
||||
$config['mod']['bypass_filters'] = ADMIN;
|
||||
$config['mod']['flood'] = &$config['mod']['bypass_filters'];
|
||||
//$config['mod']['flood'] = &$config['mod']['bypass_filters'];
|
||||
$config['mod']['flood'] = MOD;
|
||||
// Raw HTML posting
|
||||
$config['mod']['rawhtml'] = ADMIN;
|
||||
|
||||
|
|
Loading…
Reference in New Issue