private static function GetForumData($ForumID)
 {
     $Statement = Forums::$DBConnection->prepare('SELECT forum_type, forum_name FROM forums WHERE id = :forumid');
     $Statement->bindParam(':forumid', $ForumID);
     $Statement->execute();
     $Result = $Statement->fetch(PDO::FETCH_ASSOC);
     return array('forum_id' => $ForumID, 'forum_type' => $Result['forum_type'], 'forum_type_name' => Forums::GetForumTypeTranslated($Result['forum_type']), 'forum_name' => Forums::$TM->GetConfigVars($Result['forum_name']), 'topics' => array());
 }