Browse Source

Enable configurations by default: moving, subject in title, hourly stats, anti-bump-flood

main
discomrade 2 years ago
committed by -
parent
commit
c1a2c9cf2f
  1. 12
      inc/config.php

12
inc/config.php

@ -227,7 +227,7 @@
$config['dnsbl_exceptions'][] = '127.0.0.1';
// To prevent bump atacks; returns the thread to last position after the last post is deleted.
$config['anti_bump_flood'] = false;
$config['anti_bump_flood'] = true;
/*
* Introduction to Tinyboard's spam filter:
@ -1027,7 +1027,7 @@
$config['poster_id_length'] = 5;
// Show thread subject in page title.
$config['thread_subject_in_title'] = false;
$config['thread_subject_in_title'] = true;
// Collapse the new thread form on the index page until clicked, like the catalog.
$config['index_collapse_post_form'] = true;
@ -1602,7 +1602,7 @@
//);
// Enable the moving of single replies
$config['move_replies'] = false;
$config['move_replies'] = true;
// How often (minimum) to purge the ban list of expired bans (which have been seen). Only works when
// $config['cache'] is enabled and working.
@ -1745,8 +1745,8 @@
$config['mod']['view_bumplock'] = MOD;
// Edit posts
$config['mod']['editpost'] = ADMIN;
// "Move" a thread to another board (EXPERIMENTAL; has some known bugs)
$config['mod']['move'] = DISABLED;
// "Move" a thread to another board
$config['mod']['move'] = MOD;
// "Merge" a thread to same board or another board
$config['mod']['merge'] = MOD;
// Bypass "field_disable_*" (forced anonymity, etc.)
@ -2046,7 +2046,7 @@
$config['public_stats']['boards'] = true;
// Include hourly stats in public stats
// (need to run tools/public_statistics_cli.php once an hour to update data)
$config['public_stats']['hourly'] = false;
$config['public_stats']['hourly'] = true;
// Include the current hour in public stats.
$config['public_stats']['realtime'] = false;
// The format string passed to date() for displaying dates.

Loading…
Cancel
Save