diff --git a/inc/mod/pages.php b/inc/mod/pages.php
index 3554ab6d..1357c444 100644
--- a/inc/mod/pages.php
+++ b/inc/mod/pages.php
@@ -8,7 +8,7 @@ defined('TINYBOARD') or exit;
function mod_page($title, $template, $args, $subtitle = false) {
global $config, $mod;
-
+
echo Element($config['file_page_template'], array(
'config' => $config,
'mod' => $mod,
@@ -18,7 +18,7 @@ function mod_page($title, $template, $args, $subtitle = false) {
'boardlist' => createBoardlist($mod),
'body' => Element($template,
array_merge(
- array('config' => $config, 'mod' => $mod),
+ array('config' => $config, 'mod' => $mod),
$args
)
)
@@ -28,9 +28,9 @@ function mod_page($title, $template, $args, $subtitle = false) {
function mod_login($redirect = false) {
global $config;
-
+
$args = array();
-
+
if (isset($_POST['login'])) {
// Check if inputs are set and not empty
if (!isset($_POST['username'], $_POST['password']) || $_POST['username'] == '' || $_POST['password'] == '') {
@@ -38,22 +38,22 @@ function mod_login($redirect = false) {
} elseif (!login($_POST['username'], $_POST['password'])) {
if ($config['syslog'])
_syslog(LOG_WARNING, 'Unauthorized login attempt!');
-
+
$args['error'] = $config['error']['invalid'];
} else {
modLog('Logged in');
-
+
// Login successful
// Set cookies
setCookies();
-
+
if ($redirect)
header('Location: ?' . $redirect, true, $config['redirect_http']);
else
header('Location: ?/', true, $config['redirect_http']);
}
}
-
+
if (isset($_POST['username']))
$args['username'] = $_POST['username'];
@@ -68,53 +68,53 @@ function mod_confirm($request) {
function mod_logout() {
global $config;
destroyCookies();
-
+
header('Location: ?/', true, $config['redirect_http']);
}
function mod_dashboard() {
global $config, $mod;
-
+
$args = array();
-
+
$args['boards'] = listBoards();
-
+
if (hasPermission($config['mod']['noticeboard'])) {
if (!$config['cache']['enabled'] || !$args['noticeboard'] = cache::get('noticeboard_preview')) {
$query = prepare("SELECT ``noticeboard``.*, `username` FROM ``noticeboard`` LEFT JOIN ``mods`` ON ``mods``.`id` = `mod` ORDER BY `id` DESC LIMIT :limit");
$query->bindValue(':limit', $config['mod']['noticeboard_dashboard'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$args['noticeboard'] = $query->fetchAll(PDO::FETCH_ASSOC);
-
+
if ($config['cache']['enabled'])
cache::set('noticeboard_preview', $args['noticeboard']);
}
}
-
+
if (!$config['cache']['enabled'] || ($args['unread_pms'] = cache::get('pm_unreadcount_' . $mod['id'])) === false) {
$query = prepare('SELECT COUNT(*) FROM ``pms`` WHERE `to` = :id AND `unread` = 1');
$query->bindValue(':id', $mod['id']);
$query->execute() or error(db_error($query));
$args['unread_pms'] = $query->fetchColumn();
-
+
if ($config['cache']['enabled'])
cache::set('pm_unreadcount_' . $mod['id'], $args['unread_pms']);
}
-
+
$query = query('SELECT COUNT(*) FROM ``reports``') or error(db_error($query));
$args['reports'] = $query->fetchColumn();
-
+
if ($mod['type'] >= ADMIN && $config['check_updates']) {
if (!$config['version'])
error(_('Could not find current version! (Check .installed)'));
-
+
if (isset($_COOKIE['update'])) {
$latest = unserialize($_COOKIE['update']);
} else {
$ctx = stream_context_create(array('http' => array('timeout' => 5)));
if ($code = @file_get_contents('http://engine.vichan.net/version.txt', 0, $ctx)) {
$ver = strtok($code, "\n");
-
+
if (preg_match('@^// v(\d+)\.(\d+)\.(\d+)\s*?$@', $ver, $matches)) {
$latest = array(
'massive' => $matches[1],
@@ -127,7 +127,7 @@ function mod_dashboard() {
'major' => (int) $matches[2],
'minor' => (int) $matches[3]
);
- if (isset($m[4])) {
+ if (isset($m[4])) {
// Development versions are always ahead in the versioning numbers
$current['minor'] --;
}
@@ -150,36 +150,36 @@ function mod_dashboard() {
// Couldn't get latest version
$latest = false;
}
-
+
setcookie('update', serialize($latest), time() + $config['check_updates_time'], $config['cookies']['jail'] ? $config['cookies']['path'] : '/', null, !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off', true);
}
-
+
if ($latest)
$args['newer_release'] = $latest;
}
-
+
$args['logout_token'] = make_secure_link_token('logout');
-
+
mod_page(_('Dashboard'), $config['file_mod_dashboard'], $args);
}
function mod_search_redirect() {
global $config;
-
+
if (!hasPermission($config['mod']['search']))
error($config['error']['noaccess']);
-
+
if (isset($_POST['query'], $_POST['type']) && in_array($_POST['type'], array('posts', 'IP_notes', 'bans', 'log'))) {
$query = $_POST['query'];
$query = urlencode($query);
$query = str_replace('_', '%5F', $query);
$query = str_replace('+', '_', $query);
-
+
if ($query === '') {
header('Location: ?/', true, $config['redirect_http']);
return;
}
-
+
header('Location: ?/search/' . $_POST['type'] . '/' . $query, true, $config['redirect_http']);
} else {
header('Location: ?/', true, $config['redirect_http']);
@@ -188,29 +188,29 @@ function mod_search_redirect() {
function mod_search($type, $search_query_escaped, $page_no = 1) {
global $pdo, $config;
-
+
if (!hasPermission($config['mod']['search']))
error($config['error']['noaccess']);
-
+
// Unescape query
$query = str_replace('_', ' ', $search_query_escaped);
$query = urldecode($query);
$search_query = $query;
-
+
// Form a series of LIKE clauses for the query.
// This gets a little complicated.
-
+
// Escape "escape" character
$query = str_replace('!', '!!', $query);
-
+
// Escape SQL wildcard
$query = str_replace('%', '!%', $query);
-
+
// Use asterisk as wildcard instead
$query = str_replace('*', '%', $query);
-
+
$query = str_replace('`', '!`', $query);
-
+
// Array of phrases to match
$match = array();
@@ -222,7 +222,7 @@ function mod_search($type, $search_query_escaped, $page_no = 1) {
$match[] = $pdo->quote($phrase);
}
}
-
+
// Non-exact phrases (ie. plain keywords)
$keywords = explode(' ', $query);
foreach ($keywords as $word) {
@@ -230,7 +230,7 @@ function mod_search($type, $search_query_escaped, $page_no = 1) {
continue;
$match[] = $pdo->quote($word);
}
-
+
// Which `field` to search?
if ($type == 'posts')
$sql_field = array('body_nomarkup', 'files', 'subject', 'filehash', 'ip', 'name', 'trip');
@@ -256,57 +256,57 @@ function mod_search($type, $search_query_escaped, $page_no = 1) {
$sql_like .= '`' . $sql_field . '` LIKE ' . $phrase . ' ESCAPE \'!\'';
}
}
-
+
// Compile SQL query
-
+
if ($type == 'posts') {
$query = '';
$boards = listBoards();
if (empty($boards))
error(_('There are no boards to search!'));
-
+
foreach ($boards as $board) {
openBoard($board['uri']);
if (!hasPermission($config['mod']['search_posts'], $board['uri']))
continue;
-
+
if (!empty($query))
$query .= ' UNION ALL ';
$query .= sprintf("SELECT *, '%s' AS `board` FROM ``posts_%s`` WHERE %s", $board['uri'], $board['uri'], $sql_like);
}
-
+
// You weren't allowed to search any boards
if (empty($query))
error($config['error']['noaccess']);
-
+
$query .= ' ORDER BY `sticky` DESC, `id` DESC';
}
-
+
if ($type == 'IP_notes') {
$query = 'SELECT * FROM ``ip_notes`` LEFT JOIN ``mods`` ON `mod` = ``mods``.`id` WHERE ' . $sql_like . ' ORDER BY `time` DESC';
$sql_table = 'ip_notes';
if (!hasPermission($config['mod']['view_notes']) || !hasPermission($config['mod']['show_ip']))
error($config['error']['noaccess']);
}
-
+
if ($type == 'bans') {
$query = 'SELECT ``bans``.*, `username` FROM ``bans`` LEFT JOIN ``mods`` ON `creator` = ``mods``.`id` WHERE ' . $sql_like . ' ORDER BY (`expires` IS NOT NULL AND `expires` < UNIX_TIMESTAMP()), `created` DESC';
$sql_table = 'bans';
if (!hasPermission($config['mod']['view_banlist']))
error($config['error']['noaccess']);
}
-
+
if ($type == 'log') {
$query = 'SELECT `username`, `mod`, `ip`, `board`, `time`, `text` FROM ``modlogs`` LEFT JOIN ``mods`` ON `mod` = ``mods``.`id` WHERE ' . $sql_like . ' ORDER BY `time` DESC';
$sql_table = 'modlogs';
if (!hasPermission($config['mod']['modlog']))
error($config['error']['noaccess']);
}
-
+
// Execute SQL query (with pages)
$q = query($query . ' LIMIT ' . (($page_no - 1) * $config['mod']['search_page']) . ', ' . $config['mod']['search_page']) or error(db_error());
$results = $q->fetchAll(PDO::FETCH_ASSOC);
-
+
// Get total result count
if ($type == 'posts') {
$q = query("SELECT COUNT(*) FROM ($query) AS `tmp_table`") or error(db_error());
@@ -315,7 +315,7 @@ function mod_search($type, $search_query_escaped, $page_no = 1) {
$q = query('SELECT COUNT(*) FROM `' . $sql_table . '` WHERE ' . $sql_like) or error(db_error());
$result_count = $q->fetchColumn();
}
-
+
if ($type == 'bans') {
foreach ($results as &$ban) {
$ban['mask'] = Bans::range_to_string(array($ban['ipstart'], $ban['ipend']));
@@ -323,15 +323,15 @@ function mod_search($type, $search_query_escaped, $page_no = 1) {
$ban['single_addr'] = true;
}
}
-
+
if ($type == 'posts') {
foreach ($results as &$post) {
$post['snippet'] = pm_snippet($post['body']);
}
}
-
+
// $results now contains the search results
-
+
mod_page(_('Search results'), $config['file_mod_search_results'], array(
'search_type' => $type,
'search_query' => $search_query,
@@ -343,42 +343,42 @@ function mod_search($type, $search_query_escaped, $page_no = 1) {
function mod_edit_board($boardName) {
global $board, $config;
-
+
if (!openBoard($boardName))
error($config['error']['noboard']);
-
+
if (!hasPermission($config['mod']['manageboards'], $board['uri']))
error($config['error']['noaccess']);
-
+
if (isset($_POST['title'], $_POST['subtitle'])) {
if (isset($_POST['delete'])) {
if (!hasPermission($config['mod']['manageboards'], $board['uri']))
error($config['error']['deleteboard']);
-
+
$query = prepare('DELETE FROM ``boards`` WHERE `uri` = :uri');
$query->bindValue(':uri', $board['uri']);
$query->execute() or error(db_error($query));
-
+
if ($config['cache']['enabled']) {
cache::delete('board_' . $board['uri']);
cache::delete('all_boards');
}
-
+
modLog('Deleted board: ' . sprintf($config['board_abbreviation'], $board['uri']), false);
-
+
// Delete posting table
$query = query(sprintf('DROP TABLE IF EXISTS ``posts_%s``', $board['uri'])) or error(db_error());
-
+
// Clear reports
$query = prepare('DELETE FROM ``reports`` WHERE `board` = :id');
$query->bindValue(':id', $board['uri'], PDO::PARAM_STR);
$query->execute() or error(db_error($query));
-
+
// Delete from table
$query = prepare('DELETE FROM ``boards`` WHERE `uri` = :uri');
$query->bindValue(':uri', $board['uri'], PDO::PARAM_STR);
$query->execute() or error(db_error($query));
-
+
$query = prepare("SELECT `board`, `post` FROM ``cites`` WHERE `target_board` = :board ORDER BY `board`");
$query->bindValue(':board', $board['uri']);
$query->execute() or error(db_error($query));
@@ -390,18 +390,18 @@ function mod_edit_board($boardName) {
rebuildPost($cite['post']);
}
}
-
+
if (isset($tmp_board))
$board = $tmp_board;
-
+
$query = prepare('DELETE FROM ``cites`` WHERE `board` = :board OR `target_board` = :board');
$query->bindValue(':board', $board['uri']);
$query->execute() or error(db_error($query));
-
+
$query = prepare('DELETE FROM ``antispam`` WHERE `board` = :board');
$query->bindValue(':board', $board['uri']);
$query->execute() or error(db_error($query));
-
+
// Remove board from users/permissions table
$query = query('SELECT `id`,`boards` FROM ``mods``') or error(db_error());
while ($user = $query->fetch(PDO::FETCH_ASSOC)) {
@@ -414,7 +414,7 @@ function mod_edit_board($boardName) {
$_query->execute() or error(db_error($_query));
}
}
-
+
// Delete entire board directory
rrmdir($board['uri'] . '/');
} else {
@@ -423,17 +423,17 @@ function mod_edit_board($boardName) {
$query->bindValue(':title', $_POST['title']);
$query->bindValue(':subtitle', $_POST['subtitle']);
$query->execute() or error(db_error($query));
-
+
modLog('Edited board information for ' . sprintf($config['board_abbreviation'], $board['uri']), false);
}
-
+
if ($config['cache']['enabled']) {
cache::delete('board_' . $board['uri']);
cache::delete('all_boards');
}
-
+
rebuildThemes('boards');
-
+
header('Location: ?/', true, $config['redirect_http']);
} else {
mod_page(sprintf('%s: ' . $config['board_abbreviation'], _('Edit board'), $board['uri']), $config['file_mod_board'], array(
@@ -445,20 +445,20 @@ function mod_edit_board($boardName) {
function mod_new_board() {
global $config, $board;
-
+
if (!hasPermission($config['mod']['newboard']))
error($config['error']['noaccess']);
-
+
if (isset($_POST['uri'], $_POST['title'], $_POST['subtitle'])) {
if ($_POST['uri'] == '')
error(sprintf($config['error']['required'], 'URI'));
-
+
if ($_POST['title'] == '')
error(sprintf($config['error']['required'], 'title'));
-
+
if (!preg_match('/^' . $config['board_regex'] . '$/u', $_POST['uri']))
error(sprintf($config['error']['invalidfield'], 'URI'));
-
+
$bytes = 0;
$chars = preg_split('//u', $_POST['uri'], -1, PREG_SPLIT_NO_EMPTY);
foreach ($chars as $char) {
@@ -470,96 +470,96 @@ function mod_new_board() {
$bytes ++;
}
$bytes + strlen('posts_.frm');
-
+
if ($bytes > 255) {
error('Your filesystem cannot handle a board URI of that length (' . $bytes . '/255 bytes)');
exit;
}
-
+
if (openBoard($_POST['uri'])) {
error(sprintf($config['error']['boardexists'], $board['url']));
}
-
+
$query = prepare('INSERT INTO ``boards`` VALUES (:uri, :title, :subtitle)');
$query->bindValue(':uri', $_POST['uri']);
$query->bindValue(':title', $_POST['title']);
$query->bindValue(':subtitle', $_POST['subtitle']);
$query->execute() or error(db_error($query));
-
+
modLog('Created a new board: ' . sprintf($config['board_abbreviation'], $_POST['uri']));
-
+
if (!openBoard($_POST['uri']))
error(_("Couldn't open board after creation."));
-
+
$query = Element('posts.sql', array('board' => $board['uri']));
-
+
if (mysql_version() < 50503)
$query = preg_replace('/(CHARSET=|CHARACTER SET )utf8mb4/', '$1utf8', $query);
-
+
query($query) or error(db_error());
-
+
if ($config['cache']['enabled'])
cache::delete('all_boards');
-
+
// Build the board
buildIndex();
-
+
rebuildThemes('boards');
-
+
header('Location: ?/' . $board['uri'] . '/' . $config['file_index'], true, $config['redirect_http']);
}
-
+
mod_page(_('New board'), $config['file_mod_board'], array('new' => true, 'token' => make_secure_link_token('new-board')));
}
function mod_noticeboard($page_no = 1) {
global $config, $pdo, $mod;
-
+
if ($page_no < 1)
error($config['error']['404']);
-
+
if (!hasPermission($config['mod']['noticeboard']))
error($config['error']['noaccess']);
-
+
if (isset($_POST['subject'], $_POST['body'])) {
if (!hasPermission($config['mod']['noticeboard_post']))
error($config['error']['noaccess']);
-
+
$_POST['body'] = escape_markup_modifiers($_POST['body']);
markup($_POST['body']);
-
+
$query = prepare('INSERT INTO ``noticeboard`` VALUES (NULL, :mod, :time, :subject, :body)');
$query->bindValue(':mod', $mod['id']);
$query->bindvalue(':time', time());
$query->bindValue(':subject', $_POST['subject']);
$query->bindValue(':body', $_POST['body']);
$query->execute() or error(db_error($query));
-
+
if ($config['cache']['enabled'])
cache::delete('noticeboard_preview');
-
+
modLog('Posted a noticeboard entry');
-
+
header('Location: ?/noticeboard#' . $pdo->lastInsertId(), true, $config['redirect_http']);
}
-
+
$query = prepare("SELECT ``noticeboard``.*, `username` FROM ``noticeboard`` LEFT JOIN ``mods`` ON ``mods``.`id` = `mod` ORDER BY `id` DESC LIMIT :offset, :limit");
$query->bindValue(':limit', $config['mod']['noticeboard_page'], PDO::PARAM_INT);
$query->bindValue(':offset', ($page_no - 1) * $config['mod']['noticeboard_page'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$noticeboard = $query->fetchAll(PDO::FETCH_ASSOC);
-
+
if (empty($noticeboard) && $page_no > 1)
error($config['error']['404']);
-
+
foreach ($noticeboard as &$entry) {
$entry['delete_token'] = make_secure_link_token('noticeboard/delete/' . $entry['id']);
}
-
+
$query = prepare("SELECT COUNT(*) FROM ``noticeboard``");
$query->execute() or error(db_error($query));
$count = $query->fetchColumn();
-
+
mod_page(_('Noticeboard'), $config['file_mod_noticeboard'], array(
'noticeboard' => $noticeboard,
'count' => $count,
@@ -569,152 +569,152 @@ function mod_noticeboard($page_no = 1) {
function mod_noticeboard_delete($id) {
global $config;
-
+
if (!hasPermission($config['mod']['noticeboard_delete']))
error($config['error']['noaccess']);
-
+
$query = prepare('DELETE FROM ``noticeboard`` WHERE `id` = :id');
$query->bindValue(':id', $id);
$query->execute() or error(db_error($query));
-
+
modLog('Deleted a noticeboard entry');
-
+
if ($config['cache']['enabled'])
cache::delete('noticeboard_preview');
-
+
header('Location: ?/noticeboard', true, $config['redirect_http']);
}
function mod_news($page_no = 1) {
global $config, $pdo, $mod;
-
+
if ($page_no < 1)
error($config['error']['404']);
-
+
if (isset($_POST['subject'], $_POST['body'])) {
if (!hasPermission($config['mod']['news']))
error($config['error']['noaccess']);
-
+
$_POST['body'] = escape_markup_modifiers($_POST['body']);
markup($_POST['body']);
-
+
$query = prepare('INSERT INTO ``news`` VALUES (NULL, :name, :time, :subject, :body)');
$query->bindValue(':name', isset($_POST['name']) && hasPermission($config['mod']['news_custom']) ? $_POST['name'] : $mod['username']);
$query->bindvalue(':time', time());
$query->bindValue(':subject', $_POST['subject']);
$query->bindValue(':body', $_POST['body']);
$query->execute() or error(db_error($query));
-
+
modLog('Posted a news entry');
-
+
rebuildThemes('news');
-
+
header('Location: ?/edit_news#' . $pdo->lastInsertId(), true, $config['redirect_http']);
}
-
+
$query = prepare("SELECT * FROM ``news`` ORDER BY `id` DESC LIMIT :offset, :limit");
$query->bindValue(':limit', $config['mod']['news_page'], PDO::PARAM_INT);
$query->bindValue(':offset', ($page_no - 1) * $config['mod']['news_page'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$news = $query->fetchAll(PDO::FETCH_ASSOC);
-
+
if (empty($news) && $page_no > 1)
error($config['error']['404']);
-
+
foreach ($news as &$entry) {
$entry['delete_token'] = make_secure_link_token('edit_news/delete/' . $entry['id']);
}
-
+
$query = prepare("SELECT COUNT(*) FROM ``news``");
$query->execute() or error(db_error($query));
$count = $query->fetchColumn();
-
+
mod_page(_('News'), $config['file_mod_news'], array('news' => $news, 'count' => $count, 'token' => make_secure_link_token('edit_news')));
}
function mod_news_delete($id) {
global $config;
-
+
if (!hasPermission($config['mod']['news_delete']))
error($config['error']['noaccess']);
-
+
$query = prepare('DELETE FROM ``news`` WHERE `id` = :id');
$query->bindValue(':id', $id);
$query->execute() or error(db_error($query));
-
+
modLog('Deleted a news entry');
-
+
header('Location: ?/edit_news', true, $config['redirect_http']);
}
function mod_log($page_no = 1) {
global $config;
-
+
if ($page_no < 1)
error($config['error']['404']);
-
+
if (!hasPermission($config['mod']['modlog']))
error($config['error']['noaccess']);
-
+
$query = prepare("SELECT `username`, `mod`, `ip`, `board`, `time`, `text` FROM ``modlogs`` LEFT JOIN ``mods`` ON `mod` = ``mods``.`id` ORDER BY `time` DESC LIMIT :offset, :limit");
$query->bindValue(':limit', $config['mod']['modlog_page'], PDO::PARAM_INT);
$query->bindValue(':offset', ($page_no - 1) * $config['mod']['modlog_page'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$logs = $query->fetchAll(PDO::FETCH_ASSOC);
-
+
if (empty($logs) && $page_no > 1)
error($config['error']['404']);
-
+
$query = prepare("SELECT COUNT(*) FROM ``modlogs``");
$query->execute() or error(db_error($query));
$count = $query->fetchColumn();
-
+
mod_page(_('Moderation log'), $config['file_mod_log'], array('logs' => $logs, 'count' => $count));
}
function mod_user_log($username, $page_no = 1) {
global $config;
-
+
if ($page_no < 1)
error($config['error']['404']);
-
+
if (!hasPermission($config['mod']['modlog']))
error($config['error']['noaccess']);
-
+
$query = prepare("SELECT `username`, `mod`, `ip`, `board`, `time`, `text` FROM ``modlogs`` LEFT JOIN ``mods`` ON `mod` = ``mods``.`id` WHERE `username` = :username ORDER BY `time` DESC LIMIT :offset, :limit");
$query->bindValue(':username', $username);
$query->bindValue(':limit', $config['mod']['modlog_page'], PDO::PARAM_INT);
$query->bindValue(':offset', ($page_no - 1) * $config['mod']['modlog_page'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$logs = $query->fetchAll(PDO::FETCH_ASSOC);
-
+
if (empty($logs) && $page_no > 1)
error($config['error']['404']);
-
+
$query = prepare("SELECT COUNT(*) FROM ``modlogs`` LEFT JOIN ``mods`` ON `mod` = ``mods``.`id` WHERE `username` = :username");
$query->bindValue(':username', $username);
$query->execute() or error(db_error($query));
$count = $query->fetchColumn();
-
+
mod_page(_('Moderation log'), $config['file_mod_log'], array('logs' => $logs, 'count' => $count, 'username' => $username));
}
function mod_board_log($board, $page_no = 1, $hide_names = false, $public = false) {
global $config;
-
+
if ($page_no < 1)
error($config['error']['404']);
-
+
if (!hasPermission($config['mod']['mod_board_log'], $board) && !$public)
error($config['error']['noaccess']);
-
+
$query = prepare("SELECT `username`, `mod`, `ip`, `board`, `time`, `text` FROM ``modlogs`` LEFT JOIN ``mods`` ON `mod` = ``mods``.`id` WHERE `board` = :board ORDER BY `time` DESC LIMIT :offset, :limit");
$query->bindValue(':board', $board);
$query->bindValue(':limit', $config['mod']['modlog_page'], PDO::PARAM_INT);
$query->bindValue(':offset', ($page_no - 1) * $config['mod']['modlog_page'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$logs = $query->fetchAll(PDO::FETCH_ASSOC);
-
+
if (empty($logs) && $page_no > 1)
error($config['error']['404']);
@@ -726,12 +726,12 @@ function mod_board_log($board, $page_no = 1, $hide_names = false, $public = fals
}, $log['text']);
}
}
-
+
$query = prepare("SELECT COUNT(*) FROM ``modlogs`` LEFT JOIN ``mods`` ON `mod` = ``mods``.`id` WHERE `board` = :board");
$query->bindValue(':board', $board);
$query->execute() or error(db_error($query));
$count = $query->fetchColumn();
-
+
mod_page(_('Board log'), $config['file_mod_log'], array('logs' => $logs, 'count' => $count, 'board' => $board, 'hide_names' => $hide_names, 'public' => $public));
}
@@ -749,39 +749,39 @@ function mod_view_catalog($boardName) {
function mod_view_board($boardName, $page_no = 1) {
global $config, $mod;
-
+
if (!openBoard($boardName))
error($config['error']['noboard']);
-
+
if (!$page = index($page_no, $mod)) {
error($config['error']['404']);
}
-
+
$page['pages'] = getPages(true);
$page['pages'][$page_no-1]['selected'] = true;
$page['btn'] = getPageButtons($page['pages'], true);
$page['mod'] = true;
$page['config'] = $config;
-
+
echo Element($config['file_board_index'], $page);
}
function mod_view_thread($boardName, $thread) {
global $config, $mod;
-
+
if (!openBoard($boardName))
error($config['error']['noboard']);
-
+
$page = buildThread($thread, true, $mod);
echo $page;
}
function mod_view_thread50($boardName, $thread) {
global $config, $mod;
-
+
if (!openBoard($boardName))
error($config['error']['noboard']);
-
+
$page = buildThread50($thread, true, $mod);
echo $page;
}
@@ -789,20 +789,20 @@ function mod_view_thread50($boardName, $thread) {
function mod_ip_remove_note($cloaked_ip, $id) {
$ip = uncloak_ip($cloaked_ip);
global $config, $mod;
-
+
if (!hasPermission($config['mod']['remove_notes']))
error($config['error']['noaccess']);
-
+
if (filter_var($ip, FILTER_VALIDATE_IP) === false)
error("Invalid IP address.");
-
+
$query = prepare('DELETE FROM ``ip_notes`` WHERE `ip` = :ip AND `id` = :id');
$query->bindValue(':ip', $ip);
$query->bindValue(':id', $id);
$query->execute() or error(db_error($query));
modLog("Removed a note for {$cloaked_ip}");
-
+
header('Location: ?/IP/' . $cloaked_ip . '#notes', true, $config['redirect_http']);
}
@@ -811,16 +811,16 @@ function mod_ip_remove_note($cloaked_ip, $id) {
function mod_page_ip($cip) {
$ip = uncloak_ip($cip);
global $config, $mod;
-
+
if (filter_var($ip, FILTER_VALIDATE_IP) === false)
error("Invalid IP address.");
-
+
if (isset($_POST['ban_id'], $_POST['unban'])) {
if (!hasPermission($config['mod']['unban']))
error($config['error']['noaccess']);
-
+
Bans::delete($_POST['ban_id'], true, $mod['boards']);
-
+
header('Location: ?/IP/' . $cip . '#bans', true, $config['redirect_http']);
return;
}
@@ -832,11 +832,11 @@ function mod_page_ip($cip) {
header('Location: ?/edit_ban/' . $_POST['ban_id'], true, $config['redirect_http']);
return;
}
-
+
if (isset($_POST['note'])) {
if (!hasPermission($config['mod']['create_notes']))
error($config['error']['noaccess']);
-
+
$_POST['note'] = escape_markup_modifiers($_POST['note']);
markup($_POST['note']);
$query = prepare('INSERT INTO ``ip_notes`` VALUES (NULL, :ip, :mod, :time, :body)');
@@ -845,9 +845,9 @@ function mod_page_ip($cip) {
$query->bindValue(':time', time());
$query->bindValue(':body', $_POST['note']);
$query->execute() or error(db_error($query));
-
+
modLog("Added a note for {$cip}");
-
+
header('Location: ?/IP/' . $cip . '#notes', true, $config['redirect_http']);
return;
}
@@ -856,10 +856,10 @@ function mod_page_ip($cip) {
$args = array();
$args['ip'] = $ip;
$args['posts'] = array();
-
+
if ($config['mod']['dns_lookup'] && empty($config['ipcrypt_key']))
$args['hostname'] = rDNS($ip);
-
+
$boards = listBoards();
foreach ($boards as $board) {
openBoard($board['uri']);
@@ -869,27 +869,27 @@ function mod_page_ip($cip) {
$query->bindValue(':ip', $ip);
$query->bindValue(':limit', $config['mod']['ip_recentposts'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
-
+
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
if (!$post['thread']) {
$po = new Thread($post, '?/', $mod, false);
} else {
$po = new Post($post, '?/', $mod);
}
-
+
if (!isset($args['posts'][$board['uri']]))
$args['posts'][$board['uri']] = array('board' => $board, 'posts' => array());
$args['posts'][$board['uri']]['posts'][] = $po->build(true);
}
}
-
+
$args['boards'] = $boards;
$args['token'] = make_secure_link_token('ban');
-
+
if (hasPermission($config['mod']['view_ban'])) {
$args['bans'] = Bans::find($ip, false, true);
}
-
+
if (hasPermission($config['mod']['view_notes'])) {
$query = prepare("SELECT ``ip_notes``.*, `username` FROM ``ip_notes`` LEFT JOIN ``mods`` ON `mod` = ``mods``.`id` WHERE `ip` = :ip ORDER BY `time` DESC");
$query->bindValue(':ip', $ip);
@@ -905,9 +905,9 @@ function mod_page_ip($cip) {
} else {
$args['logs'] = array();
}
-
+
$args['security_token'] = make_secure_link_token('IP/' . $cip);
-
+
mod_page(sprintf('%s: %s', _('IP'), htmlspecialchars($cip)), $config['file_mod_view_ip'], $args, $args['hostname']);
}
@@ -964,10 +964,10 @@ function mod_edit_ban($ban_id) {
function mod_ban() {
global $config;
-
+
if (!hasPermission($config['mod']['ban']))
error($config['error']['noaccess']);
-
+
if (!isset($_POST['ip'], $_POST['reason'], $_POST['length'], $_POST['board'])) {
mod_page(_('New ban'), $config['file_mod_ban_form'], array('token' => make_secure_link_token('ban')));
return;
@@ -984,14 +984,14 @@ function mod_ban() {
function mod_bans() {
global $config;
global $mod;
-
+
if (!hasPermission($config['mod']['view_banlist']))
error($config['error']['noaccess']);
-
+
if (isset($_POST['unban'])) {
if (!hasPermission($config['mod']['unban']))
error($config['error']['noaccess']);
-
+
$unban = array();
foreach ($_POST as $name => $unused) {
if (preg_match('/^ban_(\d+)$/', $name, $match))
@@ -999,7 +999,7 @@ function mod_bans() {
}
if (isset($config['mod']['unban_limit']) && $config['mod']['unban_limit'] && count($unban) > $config['mod']['unban_limit'])
error(sprintf($config['error']['toomanyunban'], $config['mod']['unban_limit'], count($unban)));
-
+
foreach ($unban as $id) {
Bans::delete($id, true, $mod['boards'], true);
}
@@ -1007,7 +1007,7 @@ function mod_bans() {
header('Location: ?/bans', true, $config['redirect_http']);
return;
}
-
+
mod_page(_('Ban list'), $config['file_mod_ban_list'], array(
'mod' => $mod,
'boards' => json_encode($mod['boards']),
@@ -1030,27 +1030,27 @@ function mod_bans_json() {
function mod_ban_appeals() {
global $config, $board;
-
+
if (!hasPermission($config['mod']['view_ban_appeals']))
error($config['error']['noaccess']);
-
+
// Remove stale ban appeals
query("DELETE FROM ``ban_appeals`` WHERE NOT EXISTS (SELECT 1 FROM ``bans`` WHERE `ban_id` = ``bans``.`id`)")
or error(db_error());
-
+
if (isset($_POST['appeal_id']) && (isset($_POST['unban']) || isset($_POST['deny']))) {
if (!hasPermission($config['mod']['ban_appeals']))
error($config['error']['noaccess']);
-
+
$query = query("SELECT *, ``ban_appeals``.`id` AS `id` FROM ``ban_appeals``
LEFT JOIN ``bans`` ON `ban_id` = ``bans``.`id`
WHERE ``ban_appeals``.`id` = " . (int)$_POST['appeal_id']) or error(db_error());
if (!$ban = $query->fetch(PDO::FETCH_ASSOC)) {
error(_('Ban appeal not found!'));
}
-
+
$ban['mask'] = cloak_mask(Bans::range_to_string(array($ban['ipstart'], $ban['ipend'])));
-
+
if (isset($_POST['unban'])) {
modLog('Accepted ban appeal #' . $ban['id'] . ' for ' . $ban['mask']);
Bans::delete($ban['ban_id'], true);
@@ -1059,11 +1059,11 @@ function mod_ban_appeals() {
modLog('Denied ban appeal #' . $ban['id'] . ' for ' . $ban['mask']);
query("UPDATE ``ban_appeals`` SET `denied` = 1 WHERE `id` = " . $ban['id']) or error(db_error());
}
-
+
header('Location: ?/ban-appeals', true, $config['redirect_http']);
return;
}
-
+
$query = query("SELECT *, ``ban_appeals``.`id` AS `id` FROM ``ban_appeals``
LEFT JOIN ``bans`` ON `ban_id` = ``bans``.`id`
LEFT JOIN ``mods`` ON ``bans``.`creator` = ``mods``.`id`
@@ -1073,7 +1073,7 @@ function mod_ban_appeals() {
if ($ban['post'])
$ban['post'] = json_decode($ban['post'], true);
$ban['mask'] = Bans::range_to_string(array($ban['ipstart'], $ban['ipend']));
-
+
if ($ban['post'] && isset($ban['post']['board'], $ban['post']['id'])) {
if (openBoard($ban['post']['board'])) {
$query = query(sprintf("SELECT `num_files`, `files` FROM ``posts_%s`` WHERE `id` = " .
@@ -1093,7 +1093,7 @@ function mod_ban_appeals() {
$ban['post']['files'][0]['thumb'] = false;
$ban['post']['num_files'] = 1;
}
-
+
if ($ban['post']['thread']) {
$ban['post'] = new Post($ban['post']);
} else {
@@ -1110,13 +1110,13 @@ function mod_ban_appeals() {
function mod_lock($board, $unlock, $post) {
global $config;
-
+
if (!openBoard($board))
error($config['error']['noboard']);
-
+
if (!hasPermission($config['mod']['lock'], $board))
error($config['error']['noaccess']);
-
+
$query = prepare(sprintf('UPDATE ``posts_%s`` SET `locked` = :locked WHERE `id` = :id AND `thread` IS NULL', $board));
$query->bindValue(':id', $post);
$query->bindValue(':locked', $unlock ? 0 : 1);
@@ -1126,16 +1126,16 @@ function mod_lock($board, $unlock, $post) {
buildThread($post);
buildIndex();
}
-
+
if ($config['mod']['dismiss_reports_on_lock']) {
$query = prepare('DELETE FROM ``reports`` WHERE `board` = :board AND `post` = :id');
$query->bindValue(':board', $board);
$query->bindValue(':id', $post);
$query->execute() or error(db_error($query));
}
-
+
header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']);
-
+
if ($unlock)
event('unlock', $post);
else
@@ -1144,13 +1144,13 @@ function mod_lock($board, $unlock, $post) {
function mod_sticky($board, $unsticky, $post) {
global $config;
-
+
if (!openBoard($board))
error($config['error']['noboard']);
-
+
if (!hasPermission($config['mod']['sticky'], $board))
error($config['error']['noaccess']);
-
+
$query = prepare(sprintf('UPDATE ``posts_%s`` SET `sticky` = :sticky WHERE `id` = :id AND `thread` IS NULL', $board));
$query->bindValue(':id', $post);
$query->bindValue(':sticky', $unsticky ? 0 : 1);
@@ -1160,19 +1160,19 @@ function mod_sticky($board, $unsticky, $post) {
buildThread($post);
buildIndex();
}
-
+
header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']);
}
function mod_cycle($board, $uncycle, $post) {
global $config;
-
+
if (!openBoard($board))
error($config['error']['noboard']);
-
+
if (!hasPermission($config['mod']['cycle'], $board))
error($config['error']['noaccess']);
-
+
$query = prepare(sprintf('UPDATE ``posts_%s`` SET `cycle` = :cycle WHERE `id` = :id AND `thread` IS NULL', $board));
$query->bindValue(':id', $post);
$query->bindValue(':cycle', $uncycle ? 0 : 1);
@@ -1182,19 +1182,19 @@ function mod_cycle($board, $uncycle, $post) {
buildThread($post);
buildIndex();
}
-
+
header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']);
}
function mod_bumplock($board, $unbumplock, $post) {
global $config;
-
+
if (!openBoard($board))
error($config['error']['noboard']);
-
+
if (!hasPermission($config['mod']['bumplock'], $board))
error($config['error']['noaccess']);
-
+
$query = prepare(sprintf('UPDATE ``posts_%s`` SET `sage` = :bumplock WHERE `id` = :id AND `thread` IS NULL', $board));
$query->bindValue(':id', $post);
$query->bindValue(':bumplock', $unbumplock ? 0 : 1);
@@ -1204,16 +1204,16 @@ function mod_bumplock($board, $unbumplock, $post) {
buildThread($post);
buildIndex();
}
-
+
header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']);
}
-function mod_move_reply($originBoard, $postID) {
+function mod_move_reply($originBoard, $postID) {
global $board, $config, $mod;
if (!openBoard($originBoard))
error($config['error']['noboard']);
-
+
if (!hasPermission($config['mod']['move'], $originBoard))
error($config['error']['noaccess']);
@@ -1236,32 +1236,32 @@ function mod_move_reply($originBoard, $postID) {
else {
$post['op'] = true;
}
-
+
if ($post['files']) {
$post['files'] = json_decode($post['files'], TRUE);
$post['has_file'] = true;
foreach ($post['files'] as $i => &$file) {
$file['file_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $file['file'];
- if (isset($file['thumb']))
+ if (isset($file['thumb']))
$file['thumb_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $file['thumb'];
}
} else {
$post['has_file'] = false;
}
-
+
// allow thread to keep its same traits (stickied, locked, etc.)
$post['mod'] = true;
-
+
if (!openBoard($targetBoard))
error($config['error']['noboard']);
-
- // create the new post
+
+ // create the new post
$newID = post($post);
-
+
if ($post['has_file']) {
foreach ($post['files'] as $i => &$file) {
// move the image
- if (isset($file['thumb']))
+ if (isset($file['thumb']))
if ($file['thumb'] != 'spoiler' || $file['thumb'] != 'deleted') { //trying to move/copy the spoiler thumb raises an error
rename($file['file_path'], sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $file['file']);
rename($file['thumb_path'], sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $file['thumb']);
@@ -1273,12 +1273,12 @@ function mod_move_reply($originBoard, $postID) {
buildIndex();
// build new thread
buildThread($newID);
-
+
// trigger themes
rebuildThemes('post', $targetBoard);
// mod log
modLog("Moved post #${postID} to " . sprintf($config['board_abbreviation'], $targetBoard) . " (#${newID})", $originBoard);
-
+
// return to original board
openBoard($originBoard);
@@ -1301,9 +1301,9 @@ function mod_move_reply($originBoard, $postID) {
else {
$boards = listBoards();
-
+
$security_token = make_secure_link_token($originBoard . '/move_reply/' . $postID);
-
+
mod_page(_('Move reply'), $config['file_mod_move_reply'], array('post' => $postID, 'board' => $originBoard, 'boards' => $boards, 'token' => $security_token));
}
@@ -1312,37 +1312,37 @@ function mod_move_reply($originBoard, $postID) {
function mod_move($originBoard, $postID) {
global $board, $config, $mod, $pdo;
-
+
if (!openBoard($originBoard))
error($config['error']['noboard']);
-
+
if (!hasPermission($config['mod']['move'], $originBoard))
error($config['error']['noaccess']);
-
+
$query = prepare(sprintf('SELECT * FROM ``posts_%s`` WHERE `id` = :id AND `thread` IS NULL', $originBoard));
$query->bindValue(':id', $postID);
$query->execute() or error(db_error($query));
if (!$post = $query->fetch(PDO::FETCH_ASSOC))
error($config['error']['404']);
-
+
if (isset($_POST['board'])) {
$targetBoard = $_POST['board'];
$shadow = isset($_POST['shadow']);
-
+
if ($targetBoard === $originBoard)
error(_('Target and source board are the same.'));
-
+
// copy() if leaving a shadow thread behind; else, rename().
$clone = $shadow ? 'copy' : 'rename';
-
+
// indicate that the post is a thread
$post['op'] = true;
-
+
if ($post['files']) {
$post['files'] = json_decode($post['files'], TRUE);
$post['has_file'] = true;
foreach ($post['files'] as $i => &$file) {
- if ($file['file'] === 'deleted')
+ if ($file['file'] === 'deleted')
continue;
$file['file_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $file['file'];
$file['thumb_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $file['thumb'];
@@ -1350,68 +1350,68 @@ function mod_move($originBoard, $postID) {
} else {
$post['has_file'] = false;
}
-
+
// allow thread to keep its same traits (stickied, locked, etc.)
$post['mod'] = true;
-
+
if (!openBoard($targetBoard))
error($config['error']['noboard']);
-
+
// create the new thread
$newID = post($post);
-
+
$op = $post;
$op['id'] = $newID;
-
+
if ($post['has_file']) {
// copy image
foreach ($post['files'] as $i => &$file) {
- if ($file['file'] !== 'deleted')
+ if ($file['file'] !== 'deleted')
$clone($file['file_path'], sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $file['file']);
if (isset($file['thumb']) && !in_array($file['thumb'], array('spoiler', 'deleted', 'file')))
$clone($file['thumb_path'], sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $file['thumb']);
}
}
-
+
// go back to the original board to fetch replies
openBoard($originBoard);
-
+
$query = prepare(sprintf('SELECT * FROM ``posts_%s`` WHERE `thread` = :id ORDER BY `id`', $originBoard));
$query->bindValue(':id', $postID, PDO::PARAM_INT);
$query->execute() or error(db_error($query));
-
+
$replies = array();
-
+
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
$post['mod'] = true;
$post['thread'] = $newID;
-
+
if ($post['files']) {
$post['files'] = json_decode($post['files'], TRUE);
$post['has_file'] = true;
foreach ($post['files'] as $i => &$file) {
$file['file_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $file['file'];
- if (isset($file['thumb']))
+ if (isset($file['thumb']))
$file['thumb_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $file['thumb'];
}
} else {
$post['has_file'] = false;
}
-
+
$replies[] = $post;
}
-
+
$newIDs = array($postID => $newID);
-
+
openBoard($targetBoard);
-
+
foreach ($replies as &$post) {
$query = prepare('SELECT `target` FROM ``cites`` WHERE `target_board` = :board AND `board` = :board AND `post` = :post');
$query->bindValue(':board', $originBoard);
$query->bindValue(':post', $post['id'], PDO::PARAM_INT);
$query->execute() or error(db_error($query));
-
+
// correct >>X links
while ($cite = $query->fetch(PDO::FETCH_ASSOC)) {
if (isset($newIDs[$cite['target']])) {
@@ -1419,20 +1419,20 @@ function mod_move($originBoard, $postID) {
'/(>>(>\/' . preg_quote($originBoard, '/') . '\/)?)' . preg_quote($cite['target'], '/') . '/',
'>>' . $newIDs[$cite['target']],
$post['body_nomarkup']);
-
+
$post['body'] = $post['body_nomarkup'];
}
}
-
+
$post['body'] = $post['body_nomarkup'];
-
+
$post['op'] = false;
$post['tracked_cites'] = markup($post['body'], true);
-
+
if ($post['has_file']) {
// copy image
foreach ($post['files'] as $i => &$file) {
- if (isset($file['thumb']))
+ if (isset($file['thumb']))
if ($file['thumb'] != 'spoiler' || $file['thumb'] != 'deleted') { //trying to move/copy the spoiler thumb raises an error
$clone($file['file_path'], sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $file['file']);
$clone($file['thumb_path'], sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $file['thumb']);
@@ -1441,8 +1441,8 @@ function mod_move($originBoard, $postID) {
}
// insert reply
$newIDs[$post['id']] = $newPostID = post($post);
-
-
+
+
if (!empty($post['tracked_cites'])) {
$insert_rows = array();
foreach ($post['tracked_cites'] as $cite) {
@@ -1453,29 +1453,29 @@ function mod_move($originBoard, $postID) {
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());
}
}
-
+
modLog("Moved thread #${postID} to " . sprintf($config['board_abbreviation'], $targetBoard) . " (#${newID})", $originBoard);
-
+
// build new thread
buildThread($newID);
-
+
clean();
buildIndex();
-
+
// trigger themes
rebuildThemes('post', $targetBoard);
-
+
$newboard = $board;
// return to original board
openBoard($originBoard);
-
+
if ($shadow) {
// lock old thread
$query = prepare(sprintf('UPDATE ``posts_%s`` SET `locked` = 1 WHERE `id` = :id', $originBoard));
$query->bindValue(':id', $postID, PDO::PARAM_INT);
$query->execute() or error(db_error($query));
-
+
// leave a reply, linking to the new thread
$spost = array(
'mod' => true,
@@ -1492,62 +1492,62 @@ function mod_move($originBoard, $postID) {
);
$spost['body'] = $spost['body_nomarkup'] = sprintf($config['mod']['shadow_mesage'], '>>>/' . $targetBoard . '/' . $newID);
-
+
markup($spost['body']);
-
+
$botID = post($spost);
buildThread($postID);
-
+
buildIndex();
-
+
header('Location: ?/' . sprintf($config['board_path'], $newboard['uri']) . $config['dir']['res'] . link_for($op, false, $newboard) .
'#' . $botID, true, $config['redirect_http']);
} else {
deletePost($postID);
buildIndex();
-
+
openBoard($targetBoard);
header('Location: ?/' . sprintf($config['board_path'], $newboard['uri']) . $config['dir']['res'] . link_for($op, false, $newboard), true, $config['redirect_http']);
}
}
-
+
$boards = listBoards();
if (count($boards) <= 1)
error(_('Impossible to move thread; there is only one board.'));
-
+
$security_token = make_secure_link_token($originBoard . '/move/' . $postID);
-
+
mod_page(_('Move thread'), $config['file_mod_move'], array('post' => $postID, 'board' => $originBoard, 'boards' => $boards, 'token' => $security_token));
}
function mod_ban_post($board, $delete, $post, $token = false) {
global $config, $mod;
-
+
if (!openBoard($board))
error($config['error']['noboard']);
-
+
if (!hasPermission($config['mod']['delete'], $board))
error($config['error']['noaccess']);
-
+
$security_token = make_secure_link_token($board . '/ban/' . $post);
-
+
$query = prepare(sprintf('SELECT ' . ($config['ban_show_post'] ? '*' : '`ip`, `thread`') .
' FROM ``posts_%s`` WHERE `id` = :id', $board));
$query->bindValue(':id', $post);
$query->execute() or error(db_error($query));
if (!$_post = $query->fetch(PDO::FETCH_ASSOC))
error($config['error']['404']);
-
+
$thread = $_post['thread'];
$ip = $_post['ip'];
if (isset($_POST['new_ban'], $_POST['reason'], $_POST['length'], $_POST['board'])) {
if (isset($_POST['ip']))
$ip = $_POST['ip'];
-
+
Bans::new_ban($ip, $_POST['reason'], $_POST['length'], $_POST['board'] == '*' ? false : $_POST['board'],
false, $config['ban_show_post'] ? $_post : false);
-
+
if (isset($_POST['public_message'], $_POST['message'])) {
// public ban message
$length_english = Bans::parse_time($_POST['length']) ? 'for ' . until(Bans::parse_time($_POST['length'])) : 'permanently';
@@ -1559,7 +1559,7 @@ function mod_ban_post($board, $delete, $post, $token = false) {
$query->bindValue(':body_nomarkup', sprintf("\n
'));
-
+
if (mb_strlen($po->body) + mb_strlen($append_html) > $config['body_truncate_char']) {
// still too long; temporarily increase limit in the config
$__old_body_truncate_char = $config['body_truncate_char'];
$config['body_truncate_char'] = mb_strlen($po->body) + mb_strlen($append_html);
}
-
+
$po->body .= $append_html;
-
+
$body .= $po->build(true) . '