query('SELECT poster_ip FROM '.$db->prefix.'posts WHERE id='.$get_host) or error('Unable to fetch post IP address', __FILE__, __LINE__, $db->error()); if (!$db->num_rows($result)) message($lang_common['Bad request'], false, '404 Not Found'); $ip = $db->result($result); } // Load the misc.php language file require PUN_ROOT.'lang/'.$pun_user['language'].'/misc.php'; message(sprintf($lang_misc['Host info 1'], $ip).'
'.sprintf($lang_misc['Host info 2'], pun_htmlspecialchars(@gethostbyaddr($ip))).'

'.$lang_misc['Show more users'].''); } // All other functions require moderator/admin access $fid = isset($_GET['fid']) ? intval($_GET['fid']) : 0; if ($fid < 1) message($lang_common['Bad request'], false, '404 Not Found'); $result = $db->query('SELECT moderators FROM '.$db->prefix.'forums WHERE id='.$fid) or error('Unable to fetch forum info', __FILE__, __LINE__, $db->error()); $moderators = $db->result($result); $mods_array = ($moderators != '') ? unserialize($moderators) : array(); if ($pun_user['g_id'] != PUN_ADMIN && ($pun_user['g_moderator'] == '0' || !array_key_exists($pun_user['username'], $mods_array))) message($lang_common['No permission'], false, '403 Forbidden'); // Get topic/forum tracking data if (!$pun_user['is_guest']) $tracked_topics = get_tracked_topics(); // Load the misc.php language file require PUN_ROOT.'lang/'.$pun_user['language'].'/misc.php'; // All other topic moderation features require a topic ID in GET if (isset($_GET['tid'])) { $tid = intval($_GET['tid']); if ($tid < 1) message($lang_common['Bad request'], false, '404 Not Found'); // Fetch some info about the topic $result = $db->query('SELECT t.subject, t.num_replies, t.first_post_id, f.id AS forum_id, forum_name FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND f.id='.$fid.' AND t.id='.$tid.' AND t.moved_to IS NULL') or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error()); if (!$db->num_rows($result)) message($lang_common['Bad request'], false, '404 Not Found'); $cur_topic = $db->fetch_assoc($result); // Delete one or more posts if (isset($_POST['delete_posts']) || isset($_POST['delete_posts_comply'])) { $posts = isset($_POST['posts']) ? $_POST['posts'] : array(); if (empty($posts)) message($lang_misc['No posts selected']); if (isset($_POST['delete_posts_comply'])) { confirm_referrer('moderate.php'); if (@preg_match('%[^0-9,]%', $posts)) message($lang_common['Bad request'], false, '404 Not Found'); // Verify that the post IDs are valid $admins_sql = ($pun_user['g_id'] != PUN_ADMIN) ? ' AND poster_id NOT IN('.implode(',', get_admin_ids()).')' : ''; $result = $db->query('SELECT 1 FROM '.$db->prefix.'posts WHERE id IN('.$posts.') AND topic_id='.$tid.$admins_sql) or error('Unable to check posts', __FILE__, __LINE__, $db->error()); if ($db->num_rows($result) != substr_count($posts, ',') + 1) message($lang_common['Bad request'], false, '404 Not Found'); // Delete the posts $db->query('DELETE FROM '.$db->prefix.'posts WHERE id IN('.$posts.')') or error('Unable to delete posts', __FILE__, __LINE__, $db->error()); require PUN_ROOT.'include/search_idx.php'; strip_search_index($posts); // Get last_post, last_post_id, and last_poster for the topic after deletion $result = $db->query('SELECT id, poster, posted FROM '.$db->prefix.'posts WHERE topic_id='.$tid.' ORDER BY id DESC LIMIT 1') or error('Unable to fetch post info', __FILE__, __LINE__, $db->error()); $last_post = $db->fetch_assoc($result); // How many posts did we just delete? $num_posts_deleted = substr_count($posts, ',') + 1; // Update the topic $db->query('UPDATE '.$db->prefix.'topics SET last_post='.$last_post['posted'].', last_post_id='.$last_post['id'].', last_poster=\''.$db->escape($last_post['poster']).'\', num_replies=num_replies-'.$num_posts_deleted.' WHERE id='.$tid) or error('Unable to update topic', __FILE__, __LINE__, $db->error()); update_forum($fid); redirect('viewtopic.php?id='.$tid, $lang_misc['Delete posts redirect']); } $page_title = array(pun_htmlspecialchars($pun_config['o_board_title']), $lang_misc['Moderate']); define('PUN_ACTIVE_PAGE', 'index'); require PUN_ROOT.'header.php'; ?>

query('SELECT 1 FROM '.$db->prefix.'posts WHERE id IN('.$posts.') AND topic_id='.$tid) or error('Unable to check posts', __FILE__, __LINE__, $db->error()); if ($db->num_rows($result) != $num_posts_splitted) message($lang_common['Bad request'], false, '404 Not Found'); // Verify that the move to forum ID is valid $result = $db->query('SELECT 1 FROM '.$db->prefix.'forums AS f LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.group_id='.$pun_user['g_id'].' AND fp.forum_id='.$move_to_forum.') WHERE f.redirect_url IS NULL AND (fp.post_topics IS NULL OR fp.post_topics=1)') or error('Unable to fetch forum permissions', __FILE__, __LINE__, $db->error()); if (!$db->num_rows($result)) message($lang_common['Bad request'], false, '404 Not Found'); // Load the post.php language file require PUN_ROOT.'lang/'.$pun_user['language'].'/post.php'; // Check subject $new_subject = isset($_POST['new_subject']) ? pun_trim($_POST['new_subject']) : ''; if ($new_subject == '') message($lang_post['No subject']); else if (pun_strlen($new_subject) > 70) message($lang_post['Too long subject']); // Get data from the new first post $result = $db->query('SELECT p.id, p.poster, p.posted FROM '.$db->prefix.'posts AS p WHERE id IN('.$posts.') ORDER BY p.id ASC LIMIT 1') or error('Unable to get first post', __FILE__, __LINE__, $db->error()); $first_post_data = $db->fetch_assoc($result); // Create the new topic $db->query('INSERT INTO '.$db->prefix.'topics (poster, subject, posted, first_post_id, forum_id) VALUES (\''.$db->escape($first_post_data['poster']).'\', \''.$db->escape($new_subject).'\', '.$first_post_data['posted'].', '.$first_post_data['id'].', '.$move_to_forum.')') or error('Unable to create new topic', __FILE__, __LINE__, $db->error()); $new_tid = $db->insert_id(); // Move the posts to the new topic $db->query('UPDATE '.$db->prefix.'posts SET topic_id='.$new_tid.' WHERE id IN('.$posts.')') or error('Unable to move posts into new topic', __FILE__, __LINE__, $db->error()); // Apply every subscription to both topics $db->query('INSERT INTO '.$db->prefix.'topic_subscriptions (user_id, topic_id) SELECT user_id, '.$new_tid.' FROM '.$db->prefix.'topic_subscriptions WHERE topic_id='.$tid) or error('Unable to copy existing subscriptions', __FILE__, __LINE__, $db->error()); // Get last_post, last_post_id, and last_poster from the topic and update it $result = $db->query('SELECT id, poster, posted FROM '.$db->prefix.'posts WHERE topic_id='.$tid.' ORDER BY id DESC LIMIT 1') or error('Unable to fetch post info', __FILE__, __LINE__, $db->error()); $last_post_data = $db->fetch_assoc($result); $db->query('UPDATE '.$db->prefix.'topics SET last_post='.$last_post_data['posted'].', last_post_id='.$last_post_data['id'].', last_poster=\''.$db->escape($last_post_data['poster']).'\', num_replies=num_replies-'.$num_posts_splitted.' WHERE id='.$tid) or error('Unable to update topic', __FILE__, __LINE__, $db->error()); // Get last_post, last_post_id, and last_poster from the new topic and update it $result = $db->query('SELECT id, poster, posted FROM '.$db->prefix.'posts WHERE topic_id='.$new_tid.' ORDER BY id DESC LIMIT 1') or error('Unable to fetch post info', __FILE__, __LINE__, $db->error()); $last_post_data = $db->fetch_assoc($result); $db->query('UPDATE '.$db->prefix.'topics SET last_post='.$last_post_data['posted'].', last_post_id='.$last_post_data['id'].', last_poster=\''.$db->escape($last_post_data['poster']).'\', num_replies='.($num_posts_splitted-1).' WHERE id='.$new_tid) or error('Unable to update topic', __FILE__, __LINE__, $db->error()); update_forum($fid); update_forum($move_to_forum); redirect('viewtopic.php?id='.$new_tid, $lang_misc['Split posts redirect']); } $result = $db->query('SELECT c.id AS cid, c.cat_name, f.id AS fid, f.forum_name FROM '.$db->prefix.'categories AS c INNER JOIN '.$db->prefix.'forums AS f ON c.id=f.cat_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.post_topics IS NULL OR fp.post_topics=1) AND f.redirect_url IS NULL ORDER BY c.disp_position, c.id, f.disp_position') or error('Unable to fetch category/forum list', __FILE__, __LINE__, $db->error()); $page_title = array(pun_htmlspecialchars($pun_config['o_board_title']), $lang_misc['Moderate']); $focus_element = array('subject','new_subject'); define('PUN_ACTIVE_PAGE', 'index'); require PUN_ROOT.'header.php'; ?>

$num_pages) ? 1 : intval($_GET['p']); $start_from = $pun_user['disp_posts'] * ($p - 1); // Generate paging links $paging_links = ''.$lang_common['Pages'].' '.paginate($num_pages, $p, 'moderate.php?fid='.$fid.'&tid='.$tid); if ($pun_config['o_censoring'] == '1') $cur_topic['subject'] = censor_words($cur_topic['subject']); $page_title = array(pun_htmlspecialchars($pun_config['o_board_title']), pun_htmlspecialchars($cur_topic['forum_name']), pun_htmlspecialchars($cur_topic['subject'])); define('PUN_ACTIVE_PAGE', 'index'); require PUN_ROOT.'header.php'; ?>
query('SELECT id FROM '.$db->prefix.'posts WHERE topic_id='.$tid.' ORDER BY id LIMIT '.$start_from.','.$pun_user['disp_posts']) or error('Unable to fetch post IDs', __FILE__, __LINE__, $db->error()); $post_ids = array(); for ($i = 0;$cur_post_id = $db->result($result, $i);$i++) $post_ids[] = $cur_post_id; // Retrieve the posts (and their respective poster) $result = $db->query('SELECT u.title, u.num_posts, g.g_id, g.g_user_title, p.id, p.poster, p.poster_id, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id WHERE p.id IN ('.implode(',', $post_ids).') ORDER BY p.id', true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error()); while ($cur_post = $db->fetch_assoc($result)) { $post_count++; // If the poster is a registered user if ($cur_post['poster_id'] > 1) { if ($pun_user['g_view_users'] == '1') $poster = ''.pun_htmlspecialchars($cur_post['poster']).''; else $poster = pun_htmlspecialchars($cur_post['poster']); // get_title() requires that an element 'username' be present in the array $cur_post['username'] = $cur_post['poster']; $user_title = get_title($cur_post); if ($pun_config['o_censoring'] == '1') $user_title = censor_words($user_title); } // If the poster is a guest (or a user that has been deleted) else { $poster = pun_htmlspecialchars($cur_post['poster']); $user_title = $lang_topic['Guest']; } // Perform the main parsing of the message (BBCode, smilies, censor words etc) $cur_post['message'] = parse_message($cur_post['message'], $cur_post['hide_smilies']); ?>

#

'.$lang_topic['Last edit'].' '.pun_htmlspecialchars($cur_post['edited_by']).' ('.format_time($cur_post['edited']).')

'."\n"; ?>

' : '

'.$lang_misc['Cannot select first'].'

' ?>

/> />

  • » 
  • » 
  • » 
query('SELECT 1 FROM '.$db->prefix.'topics WHERE id IN('.implode(',',$topics).') AND forum_id='.$fid) or error('Unable to check topics', __FILE__, __LINE__, $db->error()); if ($db->num_rows($result) != count($topics)) message($lang_common['Bad request'], false, '404 Not Found'); // Verify that the move to forum ID is valid $result = $db->query('SELECT 1 FROM '.$db->prefix.'forums AS f LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.group_id='.$pun_user['g_id'].' AND fp.forum_id='.$move_to_forum.') WHERE f.redirect_url IS NULL AND (fp.post_topics IS NULL OR fp.post_topics=1)') or error('Unable to fetch forum permissions', __FILE__, __LINE__, $db->error()); if (!$db->num_rows($result)) message($lang_common['Bad request'], false, '404 Not Found'); // Delete any redirect topics if there are any (only if we moved/copied the topic back to where it was once moved from) $db->query('DELETE FROM '.$db->prefix.'topics WHERE forum_id='.$move_to_forum.' AND moved_to IN('.implode(',',$topics).')') or error('Unable to delete redirect topics', __FILE__, __LINE__, $db->error()); // Move the topic(s) $db->query('UPDATE '.$db->prefix.'topics SET forum_id='.$move_to_forum.' WHERE id IN('.implode(',',$topics).')') or error('Unable to move topics', __FILE__, __LINE__, $db->error()); // Should we create redirect topics? if (isset($_POST['with_redirect'])) { foreach ($topics as $cur_topic) { // Fetch info for the redirect topic $result = $db->query('SELECT poster, subject, posted, last_post FROM '.$db->prefix.'topics WHERE id='.$cur_topic) or error('Unable to fetch topic info', __FILE__, __LINE__, $db->error()); $moved_to = $db->fetch_assoc($result); // Create the redirect topic $db->query('INSERT INTO '.$db->prefix.'topics (poster, subject, posted, last_post, moved_to, forum_id) VALUES(\''.$db->escape($moved_to['poster']).'\', \''.$db->escape($moved_to['subject']).'\', '.$moved_to['posted'].', '.$moved_to['last_post'].', '.$cur_topic.', '.$fid.')') or error('Unable to create redirect topic', __FILE__, __LINE__, $db->error()); } } update_forum($fid); // Update the forum FROM which the topic was moved update_forum($move_to_forum); // Update the forum TO which the topic was moved $redirect_msg = (count($topics) > 1) ? $lang_misc['Move topics redirect'] : $lang_misc['Move topic redirect']; redirect('viewforum.php?id='.$move_to_forum, $redirect_msg); } if (isset($_POST['move_topics'])) { $topics = isset($_POST['topics']) ? $_POST['topics'] : array(); if (empty($topics)) message($lang_misc['No topics selected']); $topics = implode(',', array_map('intval', array_keys($topics))); $action = 'multi'; } else { $topics = intval($_GET['move_topics']); if ($topics < 1) message($lang_common['Bad request'], false, '404 Not Found'); $action = 'single'; } $result = $db->query('SELECT c.id AS cid, c.cat_name, f.id AS fid, f.forum_name FROM '.$db->prefix.'categories AS c INNER JOIN '.$db->prefix.'forums AS f ON c.id=f.cat_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.post_topics IS NULL OR fp.post_topics=1) AND f.redirect_url IS NULL ORDER BY c.disp_position, c.id, f.disp_position') or error('Unable to fetch category/forum list', __FILE__, __LINE__, $db->error()); if ($db->num_rows($result) < 2) message($lang_misc['Nowhere to move']); $page_title = array(pun_htmlspecialchars($pun_config['o_board_title']), $lang_misc['Moderate']); define('PUN_ACTIVE_PAGE', 'index'); require PUN_ROOT.'header.php'; ?>

query('SELECT id FROM '.$db->prefix.'topics WHERE id IN('.implode(',', $topics).') AND forum_id='.$fid.' ORDER BY id ASC') or error('Unable to check topics', __FILE__, __LINE__, $db->error()); if ($db->num_rows($result) != count($topics)) message($lang_common['Bad request'], false, '404 Not Found'); // The topic that we are merging into is the one with the smallest ID $merge_to_tid = $db->result($result); // Make any redirect topics point to our new, merged topic $query = 'UPDATE '.$db->prefix.'topics SET moved_to='.$merge_to_tid.' WHERE moved_to IN('.implode(',', $topics).')'; // Should we create redirect topics? if (isset($_POST['with_redirect'])) $query .= ' OR (id IN('.implode(',', $topics).') AND id != '.$merge_to_tid.')'; $db->query($query) or error('Unable to make redirection topics', __FILE__, __LINE__, $db->error()); // Merge the posts into the topic $db->query('UPDATE '.$db->prefix.'posts SET topic_id='.$merge_to_tid.' WHERE topic_id IN('.implode(',', $topics).')') or error('Unable to merge the posts into the topic', __FILE__, __LINE__, $db->error()); // Update any subscriptions $result = $db->query('SELECT DISTINCT user_id FROM '.$db->prefix.'topic_subscriptions WHERE topic_id IN('.implode(',', $topics).')') or error('Unable to fetch subscriptions of merged topics', __FILE__, __LINE__, $db->error()); $subscribed_users = array(); while ($row = $db->fetch_row($result)) $subscribed_users[] = $row[0]; $db->query('DELETE FROM '.$db->prefix.'topic_subscriptions WHERE topic_id IN('.implode(',', $topics).')') or error('Unable to delete subscriptions of merged topics', __FILE__, __LINE__, $db->error()); foreach ($subscribed_users as $cur_user_id) $db->query('INSERT INTO '.$db->prefix.'topic_subscriptions (topic_id, user_id) VALUES ('.$merge_to_tid.', '.$cur_user_id.')') or error('Unable to re-enter subscriptions for merge topic', __FILE__, __LINE__, $db->error()); // Without redirection the old topics are removed if (!isset($_POST['with_redirect'])) $db->query('DELETE FROM '.$db->prefix.'topics WHERE id IN('.implode(',', $topics).') AND id != '.$merge_to_tid) or error('Unable to delete old topics', __FILE__, __LINE__, $db->error()); // Count number of replies in the topic $result = $db->query('SELECT COUNT(id) FROM '.$db->prefix.'posts WHERE topic_id='.$merge_to_tid) or error('Unable to fetch post count for topic', __FILE__, __LINE__, $db->error()); $num_replies = $db->result($result, 0) - 1; // Get last_post, last_post_id and last_poster $result = $db->query('SELECT posted, id, poster FROM '.$db->prefix.'posts WHERE topic_id='.$merge_to_tid.' ORDER BY id DESC LIMIT 1') or error('Unable to get last post info', __FILE__, __LINE__, $db->error()); list($last_post, $last_post_id, $last_poster) = $db->fetch_row($result); // Update topic $db->query('UPDATE '.$db->prefix.'topics SET num_replies='.$num_replies.', last_post='.$last_post.', last_post_id='.$last_post_id.', last_poster=\''.$db->escape($last_poster).'\' WHERE id='.$merge_to_tid) or error('Unable to update topic', __FILE__, __LINE__, $db->error()); // Update the forum FROM which the topic was moved and redirect update_forum($fid); redirect('viewforum.php?id='.$fid, $lang_misc['Merge topics redirect']); } $topics = isset($_POST['topics']) ? $_POST['topics'] : array(); if (count($topics) < 2) message($lang_misc['Not enough topics selected']); $page_title = array(pun_htmlspecialchars($pun_config['o_board_title']), $lang_misc['Moderate']); define('PUN_ACTIVE_PAGE', 'index'); require PUN_ROOT.'header.php'; ?>

query('SELECT 1 FROM '.$db->prefix.'topics WHERE id IN('.$topics.') AND forum_id='.$fid) or error('Unable to check topics', __FILE__, __LINE__, $db->error()); if ($db->num_rows($result) != substr_count($topics, ',') + 1) message($lang_common['Bad request'], false, '404 Not Found'); // Verify that the posts are not by admins if ($pun_user['g_id'] != PUN_ADMIN) { $result = $db->query('SELECT 1 FROM '.$db->prefix.'posts WHERE topic_id IN('.$topics.') AND poster_id IN('.implode(',', get_admin_ids()).')') or error('Unable to check posts', __FILE__, __LINE__, $db->error()); if ($db->num_rows($result)) message($lang_common['No permission'], false, '403 Forbidden'); } // Delete the topics and any redirect topics $db->query('DELETE FROM '.$db->prefix.'topics WHERE id IN('.$topics.') OR moved_to IN('.$topics.')') or error('Unable to delete topic', __FILE__, __LINE__, $db->error()); // Delete any subscriptions $db->query('DELETE FROM '.$db->prefix.'topic_subscriptions WHERE topic_id IN('.$topics.')') or error('Unable to delete subscriptions', __FILE__, __LINE__, $db->error()); // Create a list of the post IDs in this topic and then strip the search index $result = $db->query('SELECT id FROM '.$db->prefix.'posts WHERE topic_id IN('.$topics.')') or error('Unable to fetch posts', __FILE__, __LINE__, $db->error()); $post_ids = ''; while ($row = $db->fetch_row($result)) $post_ids .= ($post_ids != '') ? ','.$row[0] : $row[0]; // We have to check that we actually have a list of post IDs since we could be deleting just a redirect topic if ($post_ids != '') strip_search_index($post_ids); // Delete posts $db->query('DELETE FROM '.$db->prefix.'posts WHERE topic_id IN('.$topics.')') or error('Unable to delete posts', __FILE__, __LINE__, $db->error()); update_forum($fid); redirect('viewforum.php?id='.$fid, $lang_misc['Delete topics redirect']); } $page_title = array(pun_htmlspecialchars($pun_config['o_board_title']), $lang_misc['Moderate']); define('PUN_ACTIVE_PAGE', 'index'); require PUN_ROOT.'header.php'; ?>

query('UPDATE '.$db->prefix.'topics SET closed='.$action.' WHERE id IN('.implode(',', $topics).') AND forum_id='.$fid) or error('Unable to close topics', __FILE__, __LINE__, $db->error()); $redirect_msg = ($action) ? $lang_misc['Close topics redirect'] : $lang_misc['Open topics redirect']; redirect('moderate.php?fid='.$fid, $redirect_msg); } // Or just one in $_GET else { confirm_referrer('viewtopic.php'); check_csrf($_GET['csrf_token']); $topic_id = ($action) ? intval($_GET['close']) : intval($_GET['open']); if ($topic_id < 1) message($lang_common['Bad request'], false, '404 Not Found'); $db->query('UPDATE '.$db->prefix.'topics SET closed='.$action.' WHERE id='.$topic_id.' AND forum_id='.$fid) or error('Unable to close topic', __FILE__, __LINE__, $db->error()); $redirect_msg = ($action) ? $lang_misc['Close topic redirect'] : $lang_misc['Open topic redirect']; redirect('viewtopic.php?id='.$topic_id, $redirect_msg); } } // Stick a topic else if (isset($_GET['stick'])) { confirm_referrer('viewtopic.php'); check_csrf($_GET['csrf_token']); $stick = intval($_GET['stick']); if ($stick < 1) message($lang_common['Bad request'], false, '404 Not Found'); $db->query('UPDATE '.$db->prefix.'topics SET sticky=\'1\' WHERE id='.$stick.' AND forum_id='.$fid) or error('Unable to stick topic', __FILE__, __LINE__, $db->error()); redirect('viewtopic.php?id='.$stick, $lang_misc['Stick topic redirect']); } // Unstick a topic else if (isset($_GET['unstick'])) { confirm_referrer('viewtopic.php'); check_csrf($_GET['csrf_token']); $unstick = intval($_GET['unstick']); if ($unstick < 1) message($lang_common['Bad request'], false, '404 Not Found'); $db->query('UPDATE '.$db->prefix.'topics SET sticky=\'0\' WHERE id='.$unstick.' AND forum_id='.$fid) or error('Unable to unstick topic', __FILE__, __LINE__, $db->error()); redirect('viewtopic.php?id='.$unstick, $lang_misc['Unstick topic redirect']); } // No specific forum moderation action was specified in the query string, so we'll display the moderator forum // Load the viewforum.php language file require PUN_ROOT.'lang/'.$pun_user['language'].'/forum.php'; // Fetch some info about the forum $result = $db->query('SELECT f.forum_name, f.redirect_url, f.num_topics, f.sort_by FROM '.$db->prefix.'forums AS f LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND f.id='.$fid) or error('Unable to fetch forum info', __FILE__, __LINE__, $db->error()); if (!$db->num_rows($result)) message($lang_common['Bad request'], false, '404 Not Found'); $cur_forum = $db->fetch_assoc($result); // Is this a redirect forum? In that case, abort! if ($cur_forum['redirect_url'] != '') message($lang_common['Bad request'], false, '404 Not Found'); switch ($cur_forum['sort_by']) { case 0: $sort_by = 'last_post DESC'; break; case 1: $sort_by = 'posted DESC'; break; case 2: $sort_by = 'subject ASC'; break; default: $sort_by = 'last_post DESC'; break; } // Determine the topic offset (based on $_GET['p']) $num_pages = ceil($cur_forum['num_topics'] / $pun_user['disp_topics']); $p = (!isset($_GET['p']) || $_GET['p'] <= 1 || $_GET['p'] > $num_pages) ? 1 : intval($_GET['p']); $start_from = $pun_user['disp_topics'] * ($p - 1); // Generate paging links $paging_links = ''.$lang_common['Pages'].' '.paginate($num_pages, $p, 'moderate.php?fid='.$fid); $page_title = array(pun_htmlspecialchars($pun_config['o_board_title']), pun_htmlspecialchars($cur_forum['forum_name'])); define('PUN_ACTIVE_PAGE', 'index'); require PUN_ROOT.'header.php'; ?>

query('SELECT id FROM '.$db->prefix.'topics WHERE forum_id='.$fid.' ORDER BY sticky DESC, '.$sort_by.', id DESC LIMIT '.$start_from.', '.$pun_user['disp_topics']) or error('Unable to fetch topic IDs', __FILE__, __LINE__, $db->error()); // If there are topics in this forum if ($db->num_rows($result)) { $topic_ids = array(); for ($i = 0;$cur_topic_id = $db->result($result, $i);$i++) $topic_ids[] = $cur_topic_id; // Select topics $result = $db->query('SELECT id, poster, subject, posted, last_post, last_post_id, last_poster, num_views, num_replies, closed, sticky, moved_to FROM '.$db->prefix.'topics WHERE id IN('.implode(',', $topic_ids).') ORDER BY sticky DESC, '.$sort_by.', id DESC') or error('Unable to fetch topic list for forum', __FILE__, __LINE__, $db->error()); $button_status = ''; $topic_count = 0; while ($cur_topic = $db->fetch_assoc($result)) { ++$topic_count; $status_text = array(); $item_status = ($topic_count % 2 == 0) ? 'roweven' : 'rowodd'; $icon_type = 'icon'; if (is_null($cur_topic['moved_to'])) { $last_post = ''.format_time($cur_topic['last_post']).''.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['last_poster']).''; $ghost_topic = false; } else { $last_post = '- - -'; $ghost_topic = true; } if ($pun_config['o_censoring'] == '1') $cur_topic['subject'] = censor_words($cur_topic['subject']); if ($cur_topic['sticky'] == '1') { $item_status .= ' isticky'; $status_text[] = ''.$lang_forum['Sticky'].''; } if ($cur_topic['moved_to'] != 0) { $subject = ''.pun_htmlspecialchars($cur_topic['subject']).''.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).''; $status_text[] = ''.$lang_forum['Moved'].''; $item_status .= ' imoved'; } else if ($cur_topic['closed'] == '0') $subject = ''.pun_htmlspecialchars($cur_topic['subject']).''.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).''; else { $subject = ''.pun_htmlspecialchars($cur_topic['subject']).''.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).''; $status_text[] = ''.$lang_forum['Closed'].''; $item_status .= ' iclosed'; } if (!$ghost_topic && $cur_topic['last_post'] > $pun_user['last_visit'] && (!isset($tracked_topics['topics'][$cur_topic['id']]) || $tracked_topics['topics'][$cur_topic['id']] < $cur_topic['last_post']) && (!isset($tracked_topics['forums'][$fid]) || $tracked_topics['forums'][$fid] < $cur_topic['last_post'])) { $item_status .= ' inew'; $icon_type = 'icon icon-new'; $subject = ''.$subject.''; $subject_new_posts = '[ '.$lang_common['New posts'].' ]'; } else $subject_new_posts = null; // Insert the status text before the subject $subject = implode(' ', $status_text).' '.$subject; $num_pages_topic = ceil(($cur_topic['num_replies'] + 1) / $pun_user['disp_posts']); if ($num_pages_topic > 1) $subject_multipage = '[ '.paginate($num_pages_topic, -1, 'viewtopic.php?id='.$cur_topic['id']).' ]'; else $subject_multipage = null; // Should we show the "New posts" and/or the multipage links? if (!empty($subject_new_posts) || !empty($subject_multipage)) { $subject .= !empty($subject_new_posts) ? ' '.$subject_new_posts : ''; $subject .= !empty($subject_multipage) ? ' '.$subject_multipage : ''; } ?> '."\n"; } ?>
'.$lang_forum['Empty forum'].'

/> /> /> /> />

  • » 
  • »