From c449af9f53f9e03695bc9f27fd98b333b3b80832 Mon Sep 17 00:00:00 2001 From: Retro_Guy Date: Thu, 18 Apr 2024 04:19:25 -0700 Subject: [PATCH] Cleanup overrides.inc.php to contain all currently available override options. --- Rocksolid_Light/rslight/overrides.inc.php.dist | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Rocksolid_Light/rslight/overrides.inc.php.dist b/Rocksolid_Light/rslight/overrides.inc.php.dist index 769bd28..7c8748d 100644 --- a/Rocksolid_Light/rslight/overrides.inc.php.dist +++ b/Rocksolid_Light/rslight/overrides.inc.php.dist @@ -27,6 +27,9 @@ return [ // Disable Message-ID search in header 'disable_msgid_search' => false, + + // Display bot count in footer + 'count_bots' => false, // Set default for new registered users to 'show' or 'hide' // Unsubscribed groups (else default is 'hide') @@ -41,6 +44,10 @@ return [ // Disable display of X-Face 'disable_xface' => false, + + // Disable immediate post insertion (wait for remote server) + // for a SECTION. Comma separated list ex: 'rocksolid,section3,section5', + 'insert_disable' => 'sectionONE, sectionTWO', // Disable posting attachments by section // List section names to disable: @@ -50,4 +57,3 @@ return [ // Just leave this here to avoid comma errors 'comma' => true ]; -?>