diff --git a/inc/display.php b/inc/display.php index 3860aa84..6de187a3 100644 --- a/inc/display.php +++ b/inc/display.php @@ -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 .= ' ' . $fboardname . ''; // only put slash in between elements - if ($i != count($configKey)) { + if ($i != count($config[$configKey])) { $body .= ' /'; } } @@ -77,7 +78,7 @@ function createForeignBoardListSection($configKey){ $body .= '] '; } - 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');