forked from leftypol/leftypol
functions.php: trim
This commit is contained in:
parent
c696ad4fa2
commit
98ef473a9a
1 changed files with 65 additions and 65 deletions
|
@ -57,7 +57,7 @@ function loadConfig() {
|
||||||
require_once('tmp/cache/cache_config.php');
|
require_once('tmp/cache/cache_config.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($config['cache_config']) &&
|
if (isset($config['cache_config']) &&
|
||||||
$config['cache_config'] &&
|
$config['cache_config'] &&
|
||||||
$config = Cache::get('config_' . $boardsuffix ) ) {
|
$config = Cache::get('config_' . $boardsuffix ) ) {
|
||||||
$events = Cache::get('events_' . $boardsuffix );
|
$events = Cache::get('events_' . $boardsuffix );
|
||||||
|
@ -76,7 +76,7 @@ function loadConfig() {
|
||||||
else {
|
else {
|
||||||
$config = array();
|
$config = array();
|
||||||
|
|
||||||
reset_events();
|
reset_events();
|
||||||
|
|
||||||
$arrays = array(
|
$arrays = array(
|
||||||
'db',
|
'db',
|
||||||
|
@ -309,7 +309,7 @@ function loadConfig() {
|
||||||
else if (is_callable($config['anonymous'])){
|
else if (is_callable($config['anonymous'])){
|
||||||
$config['anonymous'] = $config['anonymous']($boardsuffix);
|
$config['anonymous'] = $config['anonymous']($boardsuffix);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($config['debug']) {
|
if ($config['debug']) {
|
||||||
if (!isset($debug)) {
|
if (!isset($debug)) {
|
||||||
$debug = array(
|
$debug = array(
|
||||||
|
@ -350,7 +350,7 @@ function define_groups() {
|
||||||
define($group_name, $group_value);
|
define($group_name, $group_value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ksort($config['mod']['groups']);
|
ksort($config['mod']['groups']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -388,7 +388,7 @@ function rebuildThemes($action, $boardname = false) {
|
||||||
$config = $_config;
|
$config = $_config;
|
||||||
$board = $_board;
|
$board = $_board;
|
||||||
|
|
||||||
// Reload the locale
|
// Reload the locale
|
||||||
if ($config['locale'] != $current_locale) {
|
if ($config['locale'] != $current_locale) {
|
||||||
$current_locale = $config['locale'];
|
$current_locale = $config['locale'];
|
||||||
init_locale($config['locale']);
|
init_locale($config['locale']);
|
||||||
|
@ -409,7 +409,7 @@ function rebuildThemes($action, $boardname = false) {
|
||||||
$config = $_config;
|
$config = $_config;
|
||||||
$board = $_board;
|
$board = $_board;
|
||||||
|
|
||||||
// Reload the locale
|
// Reload the locale
|
||||||
if ($config['locale'] != $current_locale) {
|
if ($config['locale'] != $current_locale) {
|
||||||
$current_locale = $config['locale'];
|
$current_locale = $config['locale'];
|
||||||
init_locale($config['locale']);
|
init_locale($config['locale']);
|
||||||
|
@ -561,7 +561,7 @@ function purge($uri) {
|
||||||
global $config, $debug;
|
global $config, $debug;
|
||||||
|
|
||||||
// Fix for Unicode
|
// Fix for Unicode
|
||||||
$uri = rawurlencode($uri);
|
$uri = rawurlencode($uri);
|
||||||
|
|
||||||
$noescape = "/!~*()+:";
|
$noescape = "/!~*()+:";
|
||||||
$noescape = preg_split('//', $noescape);
|
$noescape = preg_split('//', $noescape);
|
||||||
|
@ -757,7 +757,7 @@ function listBoards($just_uri = false) {
|
||||||
$boards[] = $board;
|
$boards[] = $board;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($config['cache']['enabled'])
|
if ($config['cache']['enabled'])
|
||||||
cache::set($cache_name, $boards);
|
cache::set($cache_name, $boards);
|
||||||
|
|
||||||
|
@ -823,10 +823,10 @@ function displayBan($ban) {
|
||||||
$post = new Thread($ban['post'], null, false, false);
|
$post = new Thread($ban['post'], null, false, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$denied_appeals = array();
|
$denied_appeals = array();
|
||||||
$pending_appeal = false;
|
$pending_appeal = false;
|
||||||
|
|
||||||
if ($config['ban_appeals']) {
|
if ($config['ban_appeals']) {
|
||||||
$query = query("SELECT `time`, `denied` FROM ``ban_appeals`` WHERE `ban_id` = " . (int)$ban['id']) or error(db_error());
|
$query = query("SELECT `time`, `denied` FROM ``ban_appeals`` WHERE `ban_id` = " . (int)$ban['id']) or error(db_error());
|
||||||
while ($ban_appeal = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($ban_appeal = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
|
@ -837,7 +837,7 @@ function displayBan($ban) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show banned page and exit
|
// Show banned page and exit
|
||||||
die(
|
die(
|
||||||
Element('page.html', array(
|
Element('page.html', array(
|
||||||
|
@ -862,7 +862,7 @@ function checkBan($board = false) {
|
||||||
if (!isset($_SERVER['REMOTE_ADDR'])) {
|
if (!isset($_SERVER['REMOTE_ADDR'])) {
|
||||||
// Server misconfiguration
|
// Server misconfiguration
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (event('check-ban', $board))
|
if (event('check-ban', $board))
|
||||||
return true;
|
return true;
|
||||||
|
@ -877,7 +877,7 @@ function checkBan($board = false) {
|
||||||
|
|
||||||
foreach ($ips as $ip) {
|
foreach ($ips as $ip) {
|
||||||
$bans = Bans::find($_SERVER['REMOTE_ADDR'], $board, $config['show_modname']);
|
$bans = Bans::find($_SERVER['REMOTE_ADDR'], $board, $config['show_modname']);
|
||||||
|
|
||||||
foreach ($bans as &$ban) {
|
foreach ($bans as &$ban) {
|
||||||
if ($ban['expires'] && $ban['expires'] < time()) {
|
if ($ban['expires'] && $ban['expires'] < time()) {
|
||||||
Bans::delete($ban['id']);
|
Bans::delete($ban['id']);
|
||||||
|
@ -906,9 +906,9 @@ function checkBan($board = false) {
|
||||||
if (time() - $last_time_purged < $config['purge_bans'] )
|
if (time() - $last_time_purged < $config['purge_bans'] )
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Bans::purge();
|
Bans::purge();
|
||||||
|
|
||||||
if ($config['cache']['enabled'])
|
if ($config['cache']['enabled'])
|
||||||
cache::set('purged_bans_last', time());
|
cache::set('purged_bans_last', time());
|
||||||
}
|
}
|
||||||
|
@ -965,7 +965,7 @@ function threadExists($id) {
|
||||||
|
|
||||||
function insertFloodPost(array $post) {
|
function insertFloodPost(array $post) {
|
||||||
global $board;
|
global $board;
|
||||||
|
|
||||||
$query = prepare("INSERT INTO ``flood`` VALUES (NULL, :ip, :board, :time, :posthash, :filehash, :isreply)");
|
$query = prepare("INSERT INTO ``flood`` VALUES (NULL, :ip, :board, :time, :posthash, :filehash, :isreply)");
|
||||||
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
||||||
$query->bindValue(':board', $board['uri']);
|
$query->bindValue(':board', $board['uri']);
|
||||||
|
@ -1006,7 +1006,7 @@ function post(array $post) {
|
||||||
$query->bindValue(':body', $post['body']);
|
$query->bindValue(':body', $post['body']);
|
||||||
$query->bindValue(':body_nomarkup', $post['body_nomarkup']);
|
$query->bindValue(':body_nomarkup', $post['body_nomarkup']);
|
||||||
$query->bindValue(':time', isset($post['time']) ? $post['time'] : time(), PDO::PARAM_INT);
|
$query->bindValue(':time', isset($post['time']) ? $post['time'] : time(), PDO::PARAM_INT);
|
||||||
$query->bindValue(':password', $post['password']);
|
$query->bindValue(':password', $post['password']);
|
||||||
$query->bindValue(':ip', isset($post['ip']) ? $post['ip'] : $_SERVER['REMOTE_ADDR']);
|
$query->bindValue(':ip', isset($post['ip']) ? $post['ip'] : $_SERVER['REMOTE_ADDR']);
|
||||||
|
|
||||||
if ($post['op'] && $post['mod'] && isset($post['sticky']) && $post['sticky']) {
|
if ($post['op'] && $post['mod'] && isset($post['sticky']) && $post['sticky']) {
|
||||||
|
@ -1186,7 +1186,7 @@ function deletePost($id, $error_if_doesnt_exist=true, $rebuild_after=true) {
|
||||||
// Delete posts and maybe replies
|
// Delete posts and maybe replies
|
||||||
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
event('delete', $post);
|
event('delete', $post);
|
||||||
|
|
||||||
$thread_id = $post['thread'];
|
$thread_id = $post['thread'];
|
||||||
if (!$post['thread']) {
|
if (!$post['thread']) {
|
||||||
// Delete thread HTML page
|
// Delete thread HTML page
|
||||||
|
@ -1287,7 +1287,7 @@ function clean($pid = false) {
|
||||||
$query = prepare(sprintf("SELECT `id` AS `thread_id`, (SELECT COUNT(`id`) FROM ``posts_%s`` WHERE `thread` = `thread_id`) AS `reply_count` FROM ``posts_%s`` WHERE `thread` IS NULL ORDER BY `sticky` DESC, `bump` DESC LIMIT :offset, 9001", $board['uri'], $board['uri']));
|
$query = prepare(sprintf("SELECT `id` AS `thread_id`, (SELECT COUNT(`id`) FROM ``posts_%s`` WHERE `thread` = `thread_id`) AS `reply_count` FROM ``posts_%s`` WHERE `thread` IS NULL ORDER BY `sticky` DESC, `bump` DESC LIMIT :offset, 9001", $board['uri'], $board['uri']));
|
||||||
$query->bindValue(':offset', $offset, PDO::PARAM_INT);
|
$query->bindValue(':offset', $offset, PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
if ($post['reply_count'] < $config['early_404_replies']) {
|
if ($post['reply_count'] < $config['early_404_replies']) {
|
||||||
deletePost($post['thread_id'], false, false);
|
deletePost($post['thread_id'], false, false);
|
||||||
|
@ -1326,7 +1326,7 @@ function index($page, $mod=false, $brief = false) {
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$threads = array();
|
$threads = array();
|
||||||
|
|
||||||
while ($th = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($th = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
$thread = new Thread($th, $mod ? '?/' : $config['root'], $mod);
|
$thread = new Thread($th, $mod ? '?/' : $config['root'], $mod);
|
||||||
|
|
||||||
|
@ -1377,7 +1377,7 @@ function index($page, $mod=false, $brief = false) {
|
||||||
$thread->omitted = $omitted['post_count'] - ($th['sticky'] ? $config['threads_preview_sticky'] : $config['threads_preview']);
|
$thread->omitted = $omitted['post_count'] - ($th['sticky'] ? $config['threads_preview_sticky'] : $config['threads_preview']);
|
||||||
$thread->omitted_images = $omitted['image_count'] - $num_images;
|
$thread->omitted_images = $omitted['image_count'] - $num_images;
|
||||||
}
|
}
|
||||||
|
|
||||||
$threads[] = $thread;
|
$threads[] = $thread;
|
||||||
|
|
||||||
if (!$brief) {
|
if (!$brief) {
|
||||||
|
@ -1594,7 +1594,7 @@ function checkMute() {
|
||||||
// Not expired yet
|
// Not expired yet
|
||||||
error(sprintf($config['error']['youaremuted'], $mute['time'] + $mutetime - time()));
|
error(sprintf($config['error']['youaremuted'], $mute['time'] + $mutetime - time()));
|
||||||
} else {
|
} else {
|
||||||
// Already expired
|
// Already expired
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1883,8 +1883,8 @@ function wordfilters(&$body) {
|
||||||
|
|
||||||
foreach ($config['wordfilters'] as $filter) {
|
foreach ($config['wordfilters'] as $filter) {
|
||||||
if (isset($filter[3]) && $filter[3]) {
|
if (isset($filter[3]) && $filter[3]) {
|
||||||
$refilter = $filter[0];
|
$refilter = $filter[0];
|
||||||
if (strncmp($filter[0], "/", 1) !== 0)
|
if (strncmp($filter[0], "/", 1) !== 0)
|
||||||
{
|
{
|
||||||
$refilter = "/.*" . $filter[0] . "/";
|
$refilter = "/.*" . $filter[0] . "/";
|
||||||
}
|
}
|
||||||
|
@ -1895,8 +1895,8 @@ function wordfilters(&$body) {
|
||||||
return $match;
|
return $match;
|
||||||
} else {
|
} else {
|
||||||
if (isset($filter[2]) && $filter[2]) {
|
if (isset($filter[2]) && $filter[2]) {
|
||||||
$refilter = $filter[0];
|
$refilter = $filter[0];
|
||||||
if (strncmp($filter[0], "/", 1) !== 0)
|
if (strncmp($filter[0], "/", 1) !== 0)
|
||||||
{
|
{
|
||||||
$refilter = "/.*" . $filter[0] . "/";
|
$refilter = "/.*" . $filter[0] . "/";
|
||||||
}
|
}
|
||||||
|
@ -1912,7 +1912,7 @@ function wordfilters(&$body) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
, $body);
|
, $body);
|
||||||
} else {
|
} else {
|
||||||
if (isset($filter[2]) && $filter[2]) {
|
if (isset($filter[2]) && $filter[2]) {
|
||||||
if (is_callable($filter[1]))
|
if (is_callable($filter[1]))
|
||||||
$body = preg_replace_callback($filter[0], $filter[1], $body);
|
$body = preg_replace_callback($filter[0], $filter[1], $body);
|
||||||
|
@ -1958,7 +1958,7 @@ function markup_url($matches) {
|
||||||
'rel' => 'nofollow',
|
'rel' => 'nofollow',
|
||||||
'target' => '_blank',
|
'target' => '_blank',
|
||||||
);
|
);
|
||||||
|
|
||||||
event('markup-url', $link);
|
event('markup-url', $link);
|
||||||
$link = (array)$link;
|
$link = (array)$link;
|
||||||
|
|
||||||
|
@ -1993,7 +1993,7 @@ function newline_to_full_stop($body) {
|
||||||
|
|
||||||
function extract_modifiers($body) {
|
function extract_modifiers($body) {
|
||||||
$modifiers = array();
|
$modifiers = array();
|
||||||
|
|
||||||
if (preg_match_all('@<tinyboard ([\w\s]+)>(.*?)</tinyboard>@us', $body, $matches, PREG_SET_ORDER)) {
|
if (preg_match_all('@<tinyboard ([\w\s]+)>(.*?)</tinyboard>@us', $body, $matches, PREG_SET_ORDER)) {
|
||||||
foreach ($matches as $match) {
|
foreach ($matches as $match) {
|
||||||
if (preg_match('/^escape /', $match[1]))
|
if (preg_match('/^escape /', $match[1]))
|
||||||
|
@ -2001,7 +2001,7 @@ function extract_modifiers($body) {
|
||||||
$modifiers[$match[1]] = html_entity_decode($match[2]);
|
$modifiers[$match[1]] = html_entity_decode($match[2]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $modifiers;
|
return $modifiers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2024,10 +2024,10 @@ function markup(&$body, $track_cites = false, $op = false) {
|
||||||
global $board, $config, $markup_urls;
|
global $board, $config, $markup_urls;
|
||||||
|
|
||||||
$modifiers = extract_modifiers($body);
|
$modifiers = extract_modifiers($body);
|
||||||
|
|
||||||
$body = preg_replace('@<tinyboard (?!escape )([\w\s]+)>(.+?)</tinyboard>@us', '', $body);
|
$body = preg_replace('@<tinyboard (?!escape )([\w\s]+)>(.+?)</tinyboard>@us', '', $body);
|
||||||
$body = preg_replace('@<(tinyboard) escape ([\w\s]+)>@i', '<$1 $2>', $body);
|
$body = preg_replace('@<(tinyboard) escape ([\w\s]+)>@i', '<$1 $2>', $body);
|
||||||
|
|
||||||
if (isset($modifiers['raw html']) && $modifiers['raw html'] == '1') {
|
if (isset($modifiers['raw html']) && $modifiers['raw html'] == '1') {
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
@ -2069,7 +2069,7 @@ function markup(&$body, $track_cites = false, $op = false) {
|
||||||
error($config['error']['toomanylinks']);
|
error($config['error']['toomanylinks']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($config['markup_repair_tidy'])
|
if ($config['markup_repair_tidy'])
|
||||||
$body = str_replace(' ', ' ', $body);
|
$body = str_replace(' ', ' ', $body);
|
||||||
|
|
||||||
|
@ -2093,21 +2093,21 @@ function markup(&$body, $track_cites = false, $op = false) {
|
||||||
|
|
||||||
$skip_chars = 0;
|
$skip_chars = 0;
|
||||||
$body_tmp = $body;
|
$body_tmp = $body;
|
||||||
|
|
||||||
$search_cites = array();
|
$search_cites = array();
|
||||||
foreach ($cites as $matches) {
|
foreach ($cites as $matches) {
|
||||||
$search_cites[] = '`id` = ' . $matches[2][0];
|
$search_cites[] = '`id` = ' . $matches[2][0];
|
||||||
}
|
}
|
||||||
$search_cites = array_unique($search_cites);
|
$search_cites = array_unique($search_cites);
|
||||||
|
|
||||||
$query = query(sprintf('SELECT `thread`, `id` FROM ``posts_%s`` WHERE ' .
|
$query = query(sprintf('SELECT `thread`, `id` FROM ``posts_%s`` WHERE ' .
|
||||||
implode(' OR ', $search_cites), $board['uri'])) or error(db_error());
|
implode(' OR ', $search_cites), $board['uri'])) or error(db_error());
|
||||||
|
|
||||||
$cited_posts = array();
|
$cited_posts = array();
|
||||||
while ($cited = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($cited = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
$cited_posts[$cited['id']] = $cited['thread'] ? $cited['thread'] : false;
|
$cited_posts[$cited['id']] = $cited['thread'] ? $cited['thread'] : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($cites as $matches) {
|
foreach ($cites as $matches) {
|
||||||
$cite = $matches[2][0];
|
$cite = $matches[2][0];
|
||||||
|
|
||||||
|
@ -2140,34 +2140,34 @@ function markup(&$body, $track_cites = false, $op = false) {
|
||||||
|
|
||||||
$skip_chars = 0;
|
$skip_chars = 0;
|
||||||
$body_tmp = $body;
|
$body_tmp = $body;
|
||||||
|
|
||||||
if (isset($cited_posts)) {
|
if (isset($cited_posts)) {
|
||||||
// Carry found posts from local board >>X links
|
// Carry found posts from local board >>X links
|
||||||
foreach ($cited_posts as $cite => $thread) {
|
foreach ($cited_posts as $cite => $thread) {
|
||||||
$cited_posts[$cite] = $config['root'] . $board['dir'] . $config['dir']['res'] .
|
$cited_posts[$cite] = $config['root'] . $board['dir'] . $config['dir']['res'] .
|
||||||
($thread ? $thread : $cite) . '.html#' . $cite;
|
($thread ? $thread : $cite) . '.html#' . $cite;
|
||||||
}
|
}
|
||||||
|
|
||||||
$cited_posts = array(
|
$cited_posts = array(
|
||||||
$board['uri'] => $cited_posts
|
$board['uri'] => $cited_posts
|
||||||
);
|
);
|
||||||
} else
|
} else
|
||||||
$cited_posts = array();
|
$cited_posts = array();
|
||||||
|
|
||||||
$crossboard_indexes = array();
|
$crossboard_indexes = array();
|
||||||
$search_cites_boards = array();
|
$search_cites_boards = array();
|
||||||
|
|
||||||
foreach ($cites as $matches) {
|
foreach ($cites as $matches) {
|
||||||
$_board = $matches[2][0];
|
$_board = $matches[2][0];
|
||||||
$cite = @$matches[3][0];
|
$cite = @$matches[3][0];
|
||||||
|
|
||||||
if (!isset($search_cites_boards[$_board]))
|
if (!isset($search_cites_boards[$_board]))
|
||||||
$search_cites_boards[$_board] = array();
|
$search_cites_boards[$_board] = array();
|
||||||
$search_cites_boards[$_board][] = $cite;
|
$search_cites_boards[$_board][] = $cite;
|
||||||
}
|
}
|
||||||
|
|
||||||
$tmp_board = $board['uri'];
|
$tmp_board = $board['uri'];
|
||||||
|
|
||||||
foreach ($search_cites_boards as $_board => $search_cites) {
|
foreach ($search_cites_boards as $_board => $search_cites) {
|
||||||
$clauses = array();
|
$clauses = array();
|
||||||
foreach ($search_cites as $cite) {
|
foreach ($search_cites as $cite) {
|
||||||
|
@ -2176,7 +2176,7 @@ function markup(&$body, $track_cites = false, $op = false) {
|
||||||
$clauses[] = '`id` = ' . $cite;
|
$clauses[] = '`id` = ' . $cite;
|
||||||
}
|
}
|
||||||
$clauses = array_unique($clauses);
|
$clauses = array_unique($clauses);
|
||||||
|
|
||||||
if ($board['uri'] != $_board) {
|
if ($board['uri'] != $_board) {
|
||||||
if (!openBoard($_board)){
|
if (!openBoard($_board)){
|
||||||
if (in_array($_board,array_keys($config['boards_alias']))){
|
if (in_array($_board,array_keys($config['boards_alias']))){
|
||||||
|
@ -2191,25 +2191,25 @@ function markup(&$body, $track_cites = false, $op = false) {
|
||||||
else {
|
else {
|
||||||
continue; // Unknown board
|
continue; // Unknown board
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($clauses)) {
|
if (!empty($clauses)) {
|
||||||
$cited_posts[$_board] = array();
|
$cited_posts[$_board] = array();
|
||||||
|
|
||||||
$query = query(sprintf('SELECT `thread`, `id`, `slug` FROM ``posts_%s`` WHERE ' .
|
$query = query(sprintf('SELECT `thread`, `id`, `slug` FROM ``posts_%s`` WHERE ' .
|
||||||
implode(' OR ', $clauses), $board['uri'])) or error(db_error());
|
implode(' OR ', $clauses), $board['uri'])) or error(db_error());
|
||||||
|
|
||||||
while ($cite = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($cite = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
$cited_posts[$_board][$cite['id']] = $config['root'] . $board['dir'] . $config['dir']['res'] .
|
$cited_posts[$_board][$cite['id']] = $config['root'] . $board['dir'] . $config['dir']['res'] .
|
||||||
link_for($cite) . '#' . $cite['id'];
|
link_for($cite) . '#' . $cite['id'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$crossboard_indexes[$_board] = $config['root'] . $board['dir'] . $config['file_index'];
|
$crossboard_indexes[$_board] = $config['root'] . $board['dir'] . $config['file_index'];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Restore old board
|
// Restore old board
|
||||||
if ($board['uri'] != $tmp_board)
|
if ($board['uri'] != $tmp_board)
|
||||||
openBoard($tmp_board);
|
openBoard($tmp_board);
|
||||||
|
@ -2285,7 +2285,7 @@ function markup(&$body, $track_cites = false, $op = false) {
|
||||||
$code = rtrim(ltrim($code, "\r\n"));
|
$code = rtrim(ltrim($code, "\r\n"));
|
||||||
|
|
||||||
$code = "<pre class='code lang-$code_lang'>".str_replace(array("\n","\t"), array(" ","	"), htmlspecialchars($code, ENT_COMPAT, "UTF-8", false))."</pre>";
|
$code = "<pre class='code lang-$code_lang'>".str_replace(array("\n","\t"), array(" ","	"), htmlspecialchars($code, ENT_COMPAT, "UTF-8", false))."</pre>";
|
||||||
|
|
||||||
$body = str_replace("<code $id>", $code, $body);
|
$body = str_replace("<code $id>", $code, $body);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2323,7 +2323,7 @@ function utf8tohtml($utf8) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function ordutf8($string, &$offset) {
|
function ordutf8($string, &$offset) {
|
||||||
$code = ord(substr($string, $offset,1));
|
$code = ord(substr($string, $offset,1));
|
||||||
if ($code >= 128) { // otherwise 0xxxxxxx
|
if ($code >= 128) { // otherwise 0xxxxxxx
|
||||||
if ($code < 224)
|
if ($code < 224)
|
||||||
$bytesnumber = 2; // 110xxxxx
|
$bytesnumber = 2; // 110xxxxx
|
||||||
|
@ -2387,7 +2387,7 @@ function buildThread($id, $return = false, $mod = false) {
|
||||||
// Check if any posts were found
|
// Check if any posts were found
|
||||||
if (!isset($thread))
|
if (!isset($thread))
|
||||||
error($config['error']['nonexistant']);
|
error($config['error']['nonexistant']);
|
||||||
|
|
||||||
$hasnoko50 = $thread->postCount() >= $config['noko50_min'];
|
$hasnoko50 = $thread->postCount() >= $config['noko50_min'];
|
||||||
$antibot = $mod || $return ? false : create_antibot($board['uri'], $id);
|
$antibot = $mod || $return ? false : create_antibot($board['uri'], $id);
|
||||||
|
|
||||||
|
@ -2438,16 +2438,16 @@ function buildThread($id, $return = false, $mod = false) {
|
||||||
function buildThread50($id, $return = false, $mod = false, $thread = null, $antibot = false) {
|
function buildThread50($id, $return = false, $mod = false, $thread = null, $antibot = false) {
|
||||||
global $board, $config, $build_pages;
|
global $board, $config, $build_pages;
|
||||||
$id = round($id);
|
$id = round($id);
|
||||||
|
|
||||||
if ($antibot)
|
if ($antibot)
|
||||||
$antibot->reset();
|
$antibot->reset();
|
||||||
|
|
||||||
if (!$thread) {
|
if (!$thread) {
|
||||||
$query = prepare(sprintf("SELECT * FROM ``posts_%s`` WHERE (`thread` IS NULL AND `id` = :id) OR `thread` = :id ORDER BY `thread`,`id` DESC LIMIT :limit", $board['uri']));
|
$query = prepare(sprintf("SELECT * FROM ``posts_%s`` WHERE (`thread` IS NULL AND `id` = :id) OR `thread` = :id ORDER BY `thread`,`id` DESC LIMIT :limit", $board['uri']));
|
||||||
$query->bindValue(':id', $id, PDO::PARAM_INT);
|
$query->bindValue(':id', $id, PDO::PARAM_INT);
|
||||||
$query->bindValue(':limit', $config['noko50_count']+1, PDO::PARAM_INT);
|
$query->bindValue(':limit', $config['noko50_count']+1, PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
$num_images = 0;
|
$num_images = 0;
|
||||||
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
|
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
if (!isset($thread)) {
|
if (!isset($thread)) {
|
||||||
|
@ -2455,7 +2455,7 @@ function buildThread50($id, $return = false, $mod = false, $thread = null, $anti
|
||||||
} else {
|
} else {
|
||||||
if ($post['files'])
|
if ($post['files'])
|
||||||
$num_images += $post['num_files'];
|
$num_images += $post['num_files'];
|
||||||
|
|
||||||
$thread->add(new Post($post, $mod ? '?/' : $config['root'], $mod));
|
$thread->add(new Post($post, $mod ? '?/' : $config['root'], $mod));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2470,10 +2470,10 @@ function buildThread50($id, $return = false, $mod = false, $thread = null, $anti
|
||||||
SELECT SUM(`num_files`) FROM ``posts_%s`` WHERE `files` IS NOT NULL AND `thread` = :thread", $board['uri'], $board['uri']));
|
SELECT SUM(`num_files`) FROM ``posts_%s`` WHERE `files` IS NOT NULL AND `thread` = :thread", $board['uri'], $board['uri']));
|
||||||
$count->bindValue(':thread', $id, PDO::PARAM_INT);
|
$count->bindValue(':thread', $id, PDO::PARAM_INT);
|
||||||
$count->execute() or error(db_error($count));
|
$count->execute() or error(db_error($count));
|
||||||
|
|
||||||
$c = $count->fetch();
|
$c = $count->fetch();
|
||||||
$thread->omitted = $c['num'] - $config['noko50_count'];
|
$thread->omitted = $c['num'] - $config['noko50_count'];
|
||||||
|
|
||||||
$c = $count->fetch();
|
$c = $count->fetch();
|
||||||
$thread->omitted_images = $c['num'] - $num_images;
|
$thread->omitted_images = $c['num'] - $num_images;
|
||||||
}
|
}
|
||||||
|
@ -2486,13 +2486,13 @@ function buildThread50($id, $return = false, $mod = false, $thread = null, $anti
|
||||||
$thread->omitted += count($allPosts) - count($thread->posts);
|
$thread->omitted += count($allPosts) - count($thread->posts);
|
||||||
foreach ($allPosts as $index => $post) {
|
foreach ($allPosts as $index => $post) {
|
||||||
if ($index == count($allPosts)-count($thread->posts))
|
if ($index == count($allPosts)-count($thread->posts))
|
||||||
break;
|
break;
|
||||||
if ($post->files)
|
if ($post->files)
|
||||||
$thread->omitted_images += $post->num_files;
|
$thread->omitted_images += $post->num_files;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$hasnoko50 = $thread->postCount() >= $config['noko50_min'];
|
$hasnoko50 = $thread->postCount() >= $config['noko50_min'];
|
||||||
|
|
||||||
$body = Element('thread.html', array(
|
$body = Element('thread.html', array(
|
||||||
'board' => $board,
|
'board' => $board,
|
||||||
|
@ -2506,7 +2506,7 @@ function buildThread50($id, $return = false, $mod = false, $thread = null, $anti
|
||||||
'antibot' => $mod ? false : ($antibot ? $antibot : create_antibot($board['uri'], $id)),
|
'antibot' => $mod ? false : ($antibot ? $antibot : create_antibot($board['uri'], $id)),
|
||||||
'boardlist' => createBoardlist($mod),
|
'boardlist' => createBoardlist($mod),
|
||||||
'return' => ($mod ? '?' . $board['url'] . $config['file_index'] : $config['root'] . $board['dir'] . $config['file_index'])
|
'return' => ($mod ? '?' . $board['url'] . $config['file_index'] : $config['root'] . $board['dir'] . $config['file_index'])
|
||||||
));
|
));
|
||||||
|
|
||||||
if ($return) {
|
if ($return) {
|
||||||
return $body;
|
return $body;
|
||||||
|
@ -2585,7 +2585,7 @@ function hcf($a, $b){
|
||||||
$b = $a-$b;
|
$b = $a-$b;
|
||||||
$a = $a-$b;
|
$a = $a-$b;
|
||||||
}
|
}
|
||||||
if ($b==(round($b/$a))*$a)
|
if ($b==(round($b/$a))*$a)
|
||||||
$gcd=$a;
|
$gcd=$a;
|
||||||
else {
|
else {
|
||||||
for ($i=round($a/2);$i;$i--) {
|
for ($i=round($a/2);$i;$i--) {
|
||||||
|
@ -2880,7 +2880,7 @@ function process_filenames($file, $board_dir, $multiple, $i){
|
||||||
|
|
||||||
if ($multiple)
|
if ($multiple)
|
||||||
$file['file_id'] .= "-$i";
|
$file['file_id'] .= "-$i";
|
||||||
|
|
||||||
$file['file'] = $board_dir . $config['dir']['img'] . $file['file_id'] . '.' . $file['extension'];
|
$file['file'] = $board_dir . $config['dir']['img'] . $file['file_id'] . '.' . $file['extension'];
|
||||||
$file['thumb'] = $board_dir . $config['dir']['thumb'] . $file['file_id'] . '.' . ($config['thumb_ext'] ? $config['thumb_ext'] : $file['extension']);
|
$file['thumb'] = $board_dir . $config['dir']['thumb'] . $file['file_id'] . '.' . ($config['thumb_ext'] ? $config['thumb_ext'] : $file['extension']);
|
||||||
return $file;
|
return $file;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue