| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/sources/forum/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/sources/forum/forumdisplay.php |
<?php
if ($wo['config']['forum_visibility'] == 1) {
// if ($wo['loggedin'] == false) {
// header("Location: " . Wo_SeoLink('index.php?link1=welcome'));
// exit();
// }
}
if ($wo['config']['forum'] == 0) {
header("Location: " . $wo['config']['site_url']);
exit();
}
if (isset($_GET['fid']) && is_numeric($_GET['fid'])) {
$forum = Wo_GetForumInfo($_GET['fid']);
if (count($forum) > 0) {
$wo['description'] = strip_tags($forum['forum']['description']);
$wo['keywords'] = $wo['config']['siteKeywords'];
$wo['page'] = 'forum';
$wo['active'] = null;
$wo['forum_data'] = $forum;
$wo['count_thrd'] = Wo_GetTotalThreads(array("forum" => $_GET['fid']));
$wo['title'] = $forum['forum']['name_lang'];
$wo['content'] = Wo_LoadPage('forum/forumdisplay');
}
}