Change default overboard subtitles and thread count
This commit is contained in:
parent
f542f4bf1c
commit
98f804cbf2
|
@ -4,21 +4,21 @@
|
||||||
* When adding a new board, rebuild this theme. If necessary, reconfigure the catalog theme.
|
* 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' )
|
* Exclude list is space-separated (e.g. 'exclude' => 'b games music' )
|
||||||
*/
|
*/
|
||||||
$thread_limit = 15;
|
$thread_limit = 30;
|
||||||
|
|
||||||
// Define list of overboards
|
// Define list of overboards
|
||||||
$overboards_config = array(
|
$overboards_config = array(
|
||||||
array(
|
array(
|
||||||
'title' => 'Overboard',
|
'title' => 'Overboard',
|
||||||
'uri' => 'overboard',
|
'uri' => 'overboard',
|
||||||
'subtitle' => 'something something overboard',
|
'subtitle' => '30 most recently bumped threads',
|
||||||
'exclude' => '',
|
'exclude' => '',
|
||||||
'thread_limit' => $thread_limit,
|
'thread_limit' => $thread_limit,
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'title' => 'SFW Overboard',
|
'title' => 'SFW Overboard',
|
||||||
'uri' => 'sfwoverboard',
|
'uri' => 'sfwoverboard',
|
||||||
'subtitle' => 'something something sfw overboard',
|
'subtitle' => '30 most recently bumped threads from work-safe boards',
|
||||||
'exclude' => 'b',
|
'exclude' => 'b',
|
||||||
'thread_limit' => $thread_limit,
|
'thread_limit' => $thread_limit,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue