This commit is contained in:
nonmakina 2021-01-11 10:42:51 -06:00
parent 39d069a1ba
commit de83b874ff
1 changed files with 3 additions and 4 deletions

View File

@ -57,6 +57,7 @@ function doBoardListPart($list, $root, &$boards) {
}
function createForeignBoardListSection($configKey){
global $config;
$body = '';
if (isset($config[$configKey])){
@ -69,7 +70,7 @@ function createForeignBoardListSection($configKey){
$body .= ' <a href="' . $fboardurl . '">' . $fboardname . '</a>';
// only put slash in between elements
if ($i != count($configKey)) {
if ($i != count($config[$configKey])) {
$body .= ' /';
}
}
@ -77,7 +78,7 @@ function createForeignBoardListSection($configKey){
$body .= ']</span> ';
}
return body;
return $body;
}
function createBoardlist($mod=false) {
@ -92,8 +93,6 @@ function createBoardlist($mod=false) {
}
$body = '';
$body .= createForeignBoardListSection('prepended_foreign_boards');
$body .= doBoardListPart($config['boards'], $mod?'?/':$config['root'], $boards);
$body .= createForeignBoardListSection('foreign_boards');