From 7d1acd4a0580449cf16da944535f0d268ee74275 Mon Sep 17 00:00:00 2001 From: ctrlcctrlv Date: Thu, 8 Aug 2013 18:43:24 +0000 Subject: [PATCH] Make boardlist bracket wrapping optional --- inc/config.php | 3 +++ inc/display.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/inc/config.php b/inc/config.php index ef2ba4ac..66fae0f4 100644 --- a/inc/config.php +++ b/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; diff --git a/inc/display.php b/inc/display.php index 97b8c744..893b7ce5 100644 --- a/inc/display.php +++ b/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);