1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-31 12:23:48 +01:00

make the wildcard the default

This commit is contained in:
Lorenzo Yario 2024-07-14 03:38:09 -07:00 committed by GitHub
parent dba38b10d4
commit 9a80ae2434
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,17 +17,12 @@
'default' => 'Catalog'
);
$__boards = listBoards();
$__default_boards = Array();
foreach ($__boards as $__board)
$__default_boards[] = $__board['uri'];
$theme['config'][] = Array(
'title' => 'Included boards',
'name' => 'boards',
'type' => 'text',
'comment' => '(space seperated)',
'default' => implode(' ', $__default_boards)
'default' => implode('*')
);
$theme['config'][] = Array(