Browse Source

Make boardlist bracket wrapping optional

pull/40/head
ctrlcctrlv 11 years ago
committed by Michael Foster
parent
commit
7d1acd4a05
  1. 3
      inc/config.php
  2. 2
      inc/display.php

3
inc/config.php

@ -710,6 +710,9 @@
// )
// );
// 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;

2
inc/display.php

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

Loading…
Cancel
Save