From 98f804cbf22c03916f8748b204dc9a6c954228c4 Mon Sep 17 00:00:00 2001 From: discomrade Date: Thu, 10 Jun 2021 05:25:23 -0200 Subject: [PATCH] Change default overboard subtitles and thread count --- templates/themes/overboards/overboards.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/themes/overboards/overboards.php b/templates/themes/overboards/overboards.php index 19c643f2..637def65 100644 --- a/templates/themes/overboards/overboards.php +++ b/templates/themes/overboards/overboards.php @@ -4,21 +4,21 @@ * When adding a new board, rebuild this theme. If necessary, reconfigure the catalog theme. * Exclude list is space-separated (e.g. 'exclude' => 'b games music' ) */ - $thread_limit = 15; + $thread_limit = 30; // Define list of overboards $overboards_config = array( array( 'title' => 'Overboard', 'uri' => 'overboard', - 'subtitle' => 'something something overboard', + 'subtitle' => '30 most recently bumped threads', 'exclude' => '', 'thread_limit' => $thread_limit, ), array( 'title' => 'SFW Overboard', 'uri' => 'sfwoverboard', - 'subtitle' => 'something something sfw overboard', + 'subtitle' => '30 most recently bumped threads from work-safe boards', 'exclude' => 'b', 'thread_limit' => $thread_limit, ),