Fix boardlist bracketing issue

This commit is contained in:
czaks 2013-08-09 17:16:25 -04:00
parent efcec13439
commit 98fa92f684
2 changed files with 0 additions and 5 deletions

View File

@ -732,9 +732,6 @@
// )
// );
// Whether or not to put brackets around the whole board list
$config['boardlist_wrap_bracket'] = false;
// Automatically remove unnecessary whitespace when compiling HTML files from templates.
$config['minify_html'] = true;

View File

@ -46,8 +46,6 @@ function createBoardlist($mod=false) {
if (!isset($config['boards'])) return array('top'=>'','bottom'=>'');
$body = doBoardListPart($config['boards'], $mod?'?/':$config['root']);
if (!preg_match('/\] $/', $body) && $config['boardlist_wrap_bracket'])
$body = '[' . $body . ']';
$body = trim($body);