Browse Source

Clean: Make boardlist bracket wrapping optional

pull/40/head
Michael Foster 11 years ago
parent
commit
4bce3d7584
  1. 6
      inc/config.php
  2. 2
      inc/display.php

6
inc/config.php

@ -696,6 +696,9 @@
// array('status' => 'http://status.example.org/')
// );
// Whether or not to put brackets around the whole board list
$config['boardlist_wrap_bracket'] = false;
// Board categories. Only used in the "Categories" theme.
// $config['categories'] = array(
// 'Group Name' => array('a', 'b', 'c'),
@ -710,9 +713,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;

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) && $config['boardlist_wrap_bracket'])
if ($config['boardlist_wrap_bracket'] && !preg_match('/\] $/', $body))
$body = '[' . $body . ']';
$body = trim($body);

Loading…
Cancel
Save