* @author Slawkens * @copyright 2021 MyAAC * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Forum'; require_once LIBS . 'forum.php'; $forumSetting = setting('core.forum'); if(strtolower($forumSetting) != 'site') { if($forumSetting != '') { header('Location: ' . $forumSetting); exit; } echo 'Forum is disabled on this site.'; return false; } if(!$logged) { echo 'You are not logged in. Log in to post on the forum.

'; return false; } $sections = array(); foreach(getForumBoards() as $section) { $sections[$section['id']] = array( 'id' => $section['id'], 'name' => $section['name'], 'description' => $section['description'], 'closed' => $section['closed'] == '1', 'guild' => $section['guild'], 'access' => $section['access'] ); if($canEdit) { $sections[$section['id']]['hidden'] = $section['hidden']; } else { $sections[$section['id']]['hidden'] = 0; } } $number_of_rows = 0;