mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-18 10:25:55 +01:00
Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
This commit is contained in:
commit
82fb733906
@ -366,6 +366,10 @@
|
|||||||
$config['field_disable_name'] = false;
|
$config['field_disable_name'] = false;
|
||||||
// When true, no email will be able to be set.
|
// When true, no email will be able to be set.
|
||||||
$config['field_disable_email'] = false;
|
$config['field_disable_email'] = false;
|
||||||
|
// When true, no subject will be able to be set.
|
||||||
|
$config['field_disable_subject'] = false;
|
||||||
|
// When true, no subject will be able to be set in replies.
|
||||||
|
$config['field_disable_reply_subject'] = false;
|
||||||
// When true, a blank password will be used for files (not usable for deletion).
|
// When true, a blank password will be used for files (not usable for deletion).
|
||||||
$config['field_disable_password'] = false;
|
$config['field_disable_password'] = false;
|
||||||
|
|
||||||
@ -468,8 +472,10 @@
|
|||||||
// Maximum image dimensions
|
// Maximum image dimensions
|
||||||
$config['max_width'] = 10000;
|
$config['max_width'] = 10000;
|
||||||
$config['max_height'] = $config['max_width']; // 1:1
|
$config['max_height'] = $config['max_width']; // 1:1
|
||||||
// Reject dupliate image uploads
|
// Reject duplicate image uploads
|
||||||
$config['image_reject_repost'] = true;
|
$config['image_reject_repost'] = true;
|
||||||
|
// Reject duplicate image uploads within the same thread. Doesn't change anything if image_reject_repost is true.
|
||||||
|
$config['image_reject_repost_in_thread'] = false;
|
||||||
|
|
||||||
// Display the aspect ratio in a post's file info
|
// Display the aspect ratio in a post's file info
|
||||||
$config['show_ratio'] = false;
|
$config['show_ratio'] = false;
|
||||||
@ -704,6 +710,7 @@
|
|||||||
$config['error']['maxsize'] = _('The file was too big.');
|
$config['error']['maxsize'] = _('The file was too big.');
|
||||||
$config['error']['invalidzip'] = _('Invalid archive!');
|
$config['error']['invalidzip'] = _('Invalid archive!');
|
||||||
$config['error']['fileexists'] = _('That file <a href="%s">already exists</a>!');
|
$config['error']['fileexists'] = _('That file <a href="%s">already exists</a>!');
|
||||||
|
$config['error']['fileexistsinthread'] = _('That file <a href="%s">already exists</a> in this thread!');
|
||||||
$config['error']['delete_too_soon'] = _('You\'ll have to wait another %s before deleting that.');
|
$config['error']['delete_too_soon'] = _('You\'ll have to wait another %s before deleting that.');
|
||||||
$config['error']['mime_exploit'] = _('MIME type detection XSS exploit (IE) detected; post discarded.');
|
$config['error']['mime_exploit'] = _('MIME type detection XSS exploit (IE) detected; post discarded.');
|
||||||
$config['error']['invalid_embed'] = _('Couldn\'t make sense of the URL of the video you tried to embed.');
|
$config['error']['invalid_embed'] = _('Couldn\'t make sense of the URL of the video you tried to embed.');
|
||||||
|
@ -155,6 +155,11 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) {
|
|||||||
$max_lines = $config['body_truncate'];
|
$max_lines = $config['body_truncate'];
|
||||||
if ($max_chars === false)
|
if ($max_chars === false)
|
||||||
$max_chars = $config['body_truncate_char'];
|
$max_chars = $config['body_truncate_char'];
|
||||||
|
|
||||||
|
// We don't want to risk truncating in the middle of an HTML comment.
|
||||||
|
// It's easiest just to remove them all first.
|
||||||
|
$body = preg_replace('/<!--.*?-->/s', '', $body);
|
||||||
|
|
||||||
$original_body = $body;
|
$original_body = $body;
|
||||||
|
|
||||||
$lines = substr_count($body, '<br/>');
|
$lines = substr_count($body, '<br/>');
|
||||||
@ -165,7 +170,7 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) {
|
|||||||
$body = $m[0];
|
$body = $m[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
$body = substr($body, 0, $max_chars);
|
$body = mb_substr($body, 0, $max_chars);
|
||||||
|
|
||||||
if ($body != $original_body) {
|
if ($body != $original_body) {
|
||||||
// Remove any corrupt tags at the end
|
// Remove any corrupt tags at the end
|
||||||
@ -190,9 +195,12 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) {
|
|||||||
// remove broken HTML entity at the end (if existent)
|
// remove broken HTML entity at the end (if existent)
|
||||||
$body = preg_replace('/&[^;]+$/', '', $body);
|
$body = preg_replace('/&[^;]+$/', '', $body);
|
||||||
|
|
||||||
|
$tags_no_close_needed = array("colgroup", "dd", "dt", "li", "optgroup", "option", "p", "tbody", "td", "tfoot", "th", "thead", "tr", "br", "img");
|
||||||
|
|
||||||
// Close any open tags
|
// Close any open tags
|
||||||
foreach ($tags as &$tag) {
|
foreach ($tags as &$tag) {
|
||||||
$body .= "</{$tag}>";
|
if (!in_array($tag, $tags_no_close_needed))
|
||||||
|
$body .= "</{$tag}>";
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// remove broken HTML entity at the end (if existent)
|
// remove broken HTML entity at the end (if existent)
|
||||||
@ -208,7 +216,7 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) {
|
|||||||
function secure_link_confirm($text, $title, $confirm_message, $href) {
|
function secure_link_confirm($text, $title, $confirm_message, $href) {
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
return '<a onclick="if (confirm(\'' . htmlentities(addslashes($confirm_message)) . '\')) document.location=\'?/' . htmlentities(addslashes($href . '/' . make_secure_link_token($href))) . '\';return false;" title="' . htmlentities($title) . '" href="?/' . $href . '">' . $text . '</a>';
|
return '<a onclick="if (event.which==2) return true;if (confirm(\'' . htmlentities(addslashes($confirm_message)) . '\')) document.location=\'?/' . htmlentities(addslashes($href . '/' . make_secure_link_token($href))) . '\';return false;" title="' . htmlentities($title) . '" href="?/' . $href . '">' . $text . '</a>';
|
||||||
}
|
}
|
||||||
function secure_link($href) {
|
function secure_link($href) {
|
||||||
return $href . '/' . make_secure_link_token($href);
|
return $href . '/' . make_secure_link_token($href);
|
||||||
@ -342,8 +350,8 @@ class Thread {
|
|||||||
// Fix internal links
|
// Fix internal links
|
||||||
// Very complicated regex
|
// Very complicated regex
|
||||||
$this->body = preg_replace(
|
$this->body = preg_replace(
|
||||||
'/<a(([a-zA-Z]+="[^"]+")|[a-zA-Z]+=[a-zA-Z]+|\s)*href="' . preg_quote($config['root'], '/') . '(' . sprintf(preg_quote($config['board_path'], '/'), '\w+') . ')/',
|
'/<a((([a-zA-Z]+="[^"]+")|[a-zA-Z]+=[a-zA-Z]+|\s)*)href="' . preg_quote($config['root'], '/') . '(' . sprintf(preg_quote($config['board_path'], '/'), '\w+') . ')/',
|
||||||
'<a href="?/$3',
|
'<a $1href="?/$4',
|
||||||
$this->body
|
$this->body
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -527,7 +527,7 @@ function checkFlood($post) {
|
|||||||
|
|
||||||
$query = prepare(sprintf("SELECT * FROM `posts_%s` WHERE (`ip` = :ip AND `time` >= :floodtime) OR (`ip` = :ip AND `body` != '' AND `body` = :body AND `time` >= :floodsameiptime) OR (`body` != '' AND `body` = :body AND `time` >= :floodsametime) LIMIT 1", $board['uri']));
|
$query = prepare(sprintf("SELECT * FROM `posts_%s` WHERE (`ip` = :ip AND `time` >= :floodtime) OR (`ip` = :ip AND `body` != '' AND `body` = :body AND `time` >= :floodsameiptime) OR (`body` != '' AND `body` = :body AND `time` >= :floodsametime) LIMIT 1", $board['uri']));
|
||||||
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
$query->bindValue(':ip', $_SERVER['REMOTE_ADDR']);
|
||||||
$query->bindValue(':body', $post['body'], PDO::PARAM_INT);
|
$query->bindValue(':body', $post['body']);
|
||||||
$query->bindValue(':floodtime', time()-$config['flood_time'], PDO::PARAM_INT);
|
$query->bindValue(':floodtime', time()-$config['flood_time'], PDO::PARAM_INT);
|
||||||
$query->bindValue(':floodsameiptime', time()-$config['flood_time_ip'], PDO::PARAM_INT);
|
$query->bindValue(':floodsameiptime', time()-$config['flood_time_ip'], PDO::PARAM_INT);
|
||||||
$query->bindValue(':floodsametime', time()-$config['flood_time_same'], PDO::PARAM_INT);
|
$query->bindValue(':floodsametime', time()-$config['flood_time_same'], PDO::PARAM_INT);
|
||||||
@ -697,7 +697,7 @@ function threadExists($id) {
|
|||||||
|
|
||||||
function post(array $post) {
|
function post(array $post) {
|
||||||
global $pdo, $board;
|
global $pdo, $board;
|
||||||
$query = prepare(sprintf("INSERT INTO `posts_%s` VALUES ( NULL, :thread, :subject, :email, :name, :trip, :capcode, :body, :body_nomarkup, :time, :time, :thumb, :thumbwidth, :thumbheight, :file, :width, :height, :filesize, :filename, :filehash, :password, :ip, :sticky, :locked, 0, :embed)", $board['uri']));
|
$query = prepare(sprintf("INSERT INTO `posts_%s` (`id`, `thread`, `subject`, `email`, `name`, `trip`, `capcode`, `body`, `body_nomarkup`, `time`, `bump`, `thumb`, `thumbwidth`, `thumbheight`, `file`, `filewidth`, `fileheight`, `filesize`, `filename`, `filehash`, `password`, `ip`, `sticky`, `locked`, `sage`, `embed`) VALUES ( NULL, :thread, :subject, :email, :name, :trip, :capcode, :body, :body_nomarkup, :time, :time, :thumb, :thumbwidth, :thumbheight, :file, :width, :height, :filesize, :filename, :filehash, :password, :ip, :sticky, :locked, 0, :embed)", $board['uri']));
|
||||||
|
|
||||||
// Basic stuff
|
// Basic stuff
|
||||||
if (!empty($post['subject'])) {
|
if (!empty($post['subject'])) {
|
||||||
@ -1651,6 +1651,20 @@ function getPostByHash($hash) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getPostByHashInThread($hash, $thread) {
|
||||||
|
global $board;
|
||||||
|
$query = prepare(sprintf("SELECT `id`,`thread` FROM `posts_%s` WHERE `filehash` = :hash AND ( `thread` = :thread OR `id` = :thread )", $board['uri']));
|
||||||
|
$query->bindValue(':hash', $hash, PDO::PARAM_STR);
|
||||||
|
$query->bindValue(':thread', $thread, PDO::PARAM_INT);
|
||||||
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
|
if ($post = $query->fetch()) {
|
||||||
|
return $post;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
function undoImage(array $post) {
|
function undoImage(array $post) {
|
||||||
if (!$post['has_file'])
|
if (!$post['has_file'])
|
||||||
return;
|
return;
|
||||||
|
@ -64,6 +64,7 @@ function mod_confirm($request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function mod_logout() {
|
function mod_logout() {
|
||||||
|
global $config;
|
||||||
destroyCookies();
|
destroyCookies();
|
||||||
|
|
||||||
header('Location: ?/', true, $config['redirect_http']);
|
header('Location: ?/', true, $config['redirect_http']);
|
||||||
@ -706,7 +707,7 @@ function mod_sticky($board, $unsticky, $post) {
|
|||||||
$query->bindValue(':sticky', $unsticky ? 0 : 1);
|
$query->bindValue(':sticky', $unsticky ? 0 : 1);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
if ($query->rowCount()) {
|
if ($query->rowCount()) {
|
||||||
modLog(($unlock ? 'Unstickied' : 'Stickied') . " thread #{$post}");
|
modLog(($unsticky ? 'Unstickied' : 'Stickied') . " thread #{$post}");
|
||||||
buildThread($post);
|
buildThread($post);
|
||||||
buildIndex();
|
buildIndex();
|
||||||
}
|
}
|
||||||
@ -728,7 +729,7 @@ function mod_bumplock($board, $unbumplock, $post) {
|
|||||||
$query->bindValue(':bumplock', $unbumplock ? 0 : 1);
|
$query->bindValue(':bumplock', $unbumplock ? 0 : 1);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
if ($query->rowCount()) {
|
if ($query->rowCount()) {
|
||||||
modLog(($unlock ? 'Unbumplocked' : 'Bumplocked') . " thread #{$post}");
|
modLog(($unbumplock ? 'Unbumplocked' : 'Bumplocked') . " thread #{$post}");
|
||||||
buildThread($post);
|
buildThread($post);
|
||||||
buildIndex();
|
buildIndex();
|
||||||
}
|
}
|
||||||
@ -1067,13 +1068,6 @@ function mod_deletefile($board, $post) {
|
|||||||
// Record the action
|
// Record the action
|
||||||
modLog("Deleted file from post #{$post}");
|
modLog("Deleted file from post #{$post}");
|
||||||
|
|
||||||
$query = prepare(sprintf('SELECT `thread` FROM `posts_%s` WHERE `id` = :id', $board));
|
|
||||||
$query->bindValue(':id', $post);
|
|
||||||
$query->execute() or error(db_error($query));
|
|
||||||
$thread = $query->fetchColumn();
|
|
||||||
|
|
||||||
// Rebuild thread
|
|
||||||
buildThread($thread ? $thread : $post);
|
|
||||||
// Rebuild board
|
// Rebuild board
|
||||||
buildIndex();
|
buildIndex();
|
||||||
|
|
||||||
@ -1106,7 +1100,7 @@ function mod_deletebyip($boardName, $post, $global = false) {
|
|||||||
|
|
||||||
$query = '';
|
$query = '';
|
||||||
foreach ($boards as $_board) {
|
foreach ($boards as $_board) {
|
||||||
$query .= sprintf("SELECT `id`, '%s' AS `board` FROM `posts_%s` WHERE `ip` = :ip UNION ALL ", $_board['uri'], $_board['uri']);
|
$query .= sprintf("SELECT `thread`, `id`, '%s' AS `board` FROM `posts_%s` WHERE `ip` = :ip UNION ALL ", $_board['uri'], $_board['uri']);
|
||||||
}
|
}
|
||||||
$query = preg_replace('/UNION ALL $/', '', $query);
|
$query = preg_replace('/UNION ALL $/', '', $query);
|
||||||
|
|
||||||
@ -1117,18 +1111,27 @@ function mod_deletebyip($boardName, $post, $global = false) {
|
|||||||
if ($query->rowCount() < 1)
|
if ($query->rowCount() < 1)
|
||||||
error($config['error']['invalidpost']);
|
error($config['error']['invalidpost']);
|
||||||
|
|
||||||
$boards = array();
|
set_time_limit($config['mod']['rebuild_timelimit']);
|
||||||
|
|
||||||
|
$threads_to_rebuild = array();
|
||||||
|
$threads_deleted = array();
|
||||||
while ($post = $query->fetch()) {
|
while ($post = $query->fetch()) {
|
||||||
openBoard($post['board']);
|
openBoard($post['board']);
|
||||||
$boards[] = $post['board'];
|
|
||||||
|
|
||||||
deletePost($post['id'], false);
|
deletePost($post['id'], false, false);
|
||||||
|
|
||||||
|
if ($post['thread'])
|
||||||
|
$threads_to_rebuild[$post['board']][$post['thread']] = true;
|
||||||
|
else
|
||||||
|
$threads_deleted[$post['board']][$post['id']] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$boards = array_unique($boards);
|
foreach ($threads_to_rebuild as $_board => $_threads) {
|
||||||
|
|
||||||
foreach ($boards as $_board) {
|
|
||||||
openBoard($_board);
|
openBoard($_board);
|
||||||
|
foreach ($_threads as $_thread => $_dummy) {
|
||||||
|
if ($_dummy && !isset($threads_deleted[$_board][$_thread]))
|
||||||
|
buildThread($_thread);
|
||||||
|
}
|
||||||
buildIndex();
|
buildIndex();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1460,6 +1463,8 @@ function mod_rebuild() {
|
|||||||
error($config['error']['noaccess']);
|
error($config['error']['noaccess']);
|
||||||
|
|
||||||
if (isset($_POST['rebuild'])) {
|
if (isset($_POST['rebuild'])) {
|
||||||
|
set_time_limit($config['mod']['rebuild_timelimit']);
|
||||||
|
|
||||||
$log = array();
|
$log = array();
|
||||||
$boards = listBoards();
|
$boards = listBoards();
|
||||||
$rebuilt_scripts = array();
|
$rebuilt_scripts = array();
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Installation/upgrade file
|
// Installation/upgrade file
|
||||||
define('VERSION', 'v0.9.6-dev-6');
|
define('VERSION', 'v0.9.6-dev-7');
|
||||||
|
|
||||||
require 'inc/functions.php';
|
require 'inc/functions.php';
|
||||||
|
|
||||||
@ -222,6 +222,11 @@ if (file_exists($config['has_installed'])) {
|
|||||||
foreach ($boards as $board) {
|
foreach ($boards as $board) {
|
||||||
query(sprintf("ALTER TABLE `posts_%s` CHANGE `id` `id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT", $board['uri'])) or error(db_error());
|
query(sprintf("ALTER TABLE `posts_%s` CHANGE `id` `id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT", $board['uri'])) or error(db_error());
|
||||||
}
|
}
|
||||||
|
case 'v0.9.6-dev-6':
|
||||||
|
foreach ($boards as &$_board) {
|
||||||
|
query(sprintf("CREATE INDEX `thread_id` ON `posts_%s` (`thread`, `id`)", $_board['uri'])) or error(db_error());
|
||||||
|
query(sprintf("ALTER TABLE `posts_%s` DROP INDEX `thread`", $_board['uri'])) or error(db_error());
|
||||||
|
}
|
||||||
case false:
|
case false:
|
||||||
// Update version number
|
// Update version number
|
||||||
file_write($config['has_installed'], VERSION);
|
file_write($config['has_installed'], VERSION);
|
||||||
|
81
post.php
81
post.php
@ -140,7 +140,7 @@ if (isset($_POST['delete'])) {
|
|||||||
header('Location: ' . $root . $board['dir'] . $config['file_index'], true, $config['redirect_http']);
|
header('Location: ' . $root . $board['dir'] . $config['file_index'], true, $config['redirect_http']);
|
||||||
} elseif (isset($_POST['post'])) {
|
} elseif (isset($_POST['post'])) {
|
||||||
|
|
||||||
if (!isset($_POST['subject'], $_POST['body'], $_POST['board']))
|
if (!isset($_POST['body'], $_POST['board']))
|
||||||
error($config['error']['bot']);
|
error($config['error']['bot']);
|
||||||
|
|
||||||
if (!isset($_POST['name']))
|
if (!isset($_POST['name']))
|
||||||
@ -149,6 +149,9 @@ if (isset($_POST['delete'])) {
|
|||||||
if (!isset($_POST['email']))
|
if (!isset($_POST['email']))
|
||||||
$_POST['email'] = '';
|
$_POST['email'] = '';
|
||||||
|
|
||||||
|
if (!isset($_POST['subject']))
|
||||||
|
$_POST['subject'] = '';
|
||||||
|
|
||||||
if (!isset($_POST['password']))
|
if (!isset($_POST['password']))
|
||||||
$_POST['password'] = '';
|
$_POST['password'] = '';
|
||||||
|
|
||||||
@ -277,6 +280,9 @@ if (isset($_POST['delete'])) {
|
|||||||
|
|
||||||
if ($config['field_disable_password'])
|
if ($config['field_disable_password'])
|
||||||
$_POST['password'] = '';
|
$_POST['password'] = '';
|
||||||
|
|
||||||
|
if ($config['field_disable_subject'] || (!$post['op'] && $config['field_disable_reply_subject']))
|
||||||
|
$_POST['subject'] = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for a file
|
// Check for a file
|
||||||
@ -413,34 +419,12 @@ if (isset($_POST['delete'])) {
|
|||||||
|
|
||||||
require_once 'inc/image.php';
|
require_once 'inc/image.php';
|
||||||
|
|
||||||
if ($config['thumb_method'] == 'imagick') {
|
// find dimensions of an image using GD
|
||||||
// This is tricky, because Imagick won't let us find
|
if (!$size = @getimagesize($upload)) {
|
||||||
// an image's dimensions without loading it all into
|
error($config['error']['invalidimg']);
|
||||||
// memory first, unlike GD which provides the
|
}
|
||||||
// getimagesize() to do exactly that. This section
|
if ($size[0] > $config['max_width'] || $size[1] > $config['max_height']) {
|
||||||
// is why GD is required, even when using Imagick
|
error($config['error']['maxsize']);
|
||||||
// instead. There doesn't seem to be an alternative.
|
|
||||||
// Necessary for security, as Imagick even ignores
|
|
||||||
// PHP's memory limit.
|
|
||||||
|
|
||||||
// first try GD's getimagesize()
|
|
||||||
if ($size = @getimagesize($upload)) {
|
|
||||||
if ($size[0] > $config['max_width'] || $size[1] > $config['max_height']) {
|
|
||||||
|
|
||||||
error($config['error']['maxsize']);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// GD failed
|
|
||||||
// TODO?
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// find dimensions of an image using GD
|
|
||||||
if (!$size = @getimagesize($upload)) {
|
|
||||||
error($config['error']['invalidimg']);
|
|
||||||
}
|
|
||||||
if ($size[0] > $config['max_width'] || $size[1] > $config['max_height']) {
|
|
||||||
error($config['error']['maxsize']);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// create image object
|
// create image object
|
||||||
@ -506,17 +490,34 @@ if (isset($_POST['delete'])) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($post['has_file'] && $config['image_reject_repost'] && $p = getPostByHash($post['filehash'])) {
|
if ($post['has_file']) {
|
||||||
undoImage($post);
|
if ($config['image_reject_repost']) {
|
||||||
error(sprintf($config['error']['fileexists'],
|
if ($p = getPostByHash($post['filehash'])) {
|
||||||
$post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root'] .
|
undoImage($post);
|
||||||
$board['dir'] . $config['dir']['res'] .
|
error(sprintf($config['error']['fileexists'],
|
||||||
($p['thread'] ?
|
$post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root'] .
|
||||||
$p['thread'] . '.html#' . $p['id']
|
$board['dir'] . $config['dir']['res'] .
|
||||||
:
|
($p['thread'] ?
|
||||||
$p['id'] . '.html'
|
$p['thread'] . '.html#' . $p['id']
|
||||||
)
|
:
|
||||||
));
|
$p['id'] . '.html'
|
||||||
|
)
|
||||||
|
));
|
||||||
|
}
|
||||||
|
} else if (!$post['op'] && $config['image_reject_repost_in_thread']) {
|
||||||
|
if ($p = getPostByHashInThread($post['filehash'], $post['thread'])) {
|
||||||
|
undoImage($post);
|
||||||
|
error(sprintf($config['error']['fileexistsinthread'],
|
||||||
|
$post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root'] .
|
||||||
|
$board['dir'] . $config['dir']['res'] .
|
||||||
|
($p['thread'] ?
|
||||||
|
$p['thread'] . '.html#' . $p['id']
|
||||||
|
:
|
||||||
|
$p['id'] . '.html'
|
||||||
|
)
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hasPermission($config['mod']['postunoriginal'], $board['uri']) && $config['robot_enable'] && checkRobot($post['body_nomarkup'])) {
|
if (!hasPermission($config['mod']['postunoriginal'], $board['uri']) && $config['robot_enable'] && checkRobot($post['body_nomarkup'])) {
|
||||||
|
@ -27,12 +27,18 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>{% endif %}
|
</tr>{% endif %}
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
{% if not (config.field_disable_subject or (id and config.field_disable_reply_subject)) or (mod and post.mod|hasPermission(config.mod.bypass_field_disable, board.uri)) %}<th>
|
||||||
{% trans %}Subject{% endtrans %}
|
{% trans %}Subject{% endtrans %}
|
||||||
{{ antibot.html() }}
|
{{ antibot.html() }}
|
||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
<input style="float:left;" type="text" name="subject" size="25" maxlength="100" autocomplete="off">
|
<input style="float:left;" type="text" name="subject" size="25" maxlength="100" autocomplete="off">
|
||||||
|
{% else %}<th>
|
||||||
|
{% trans %}Submit{% endtrans %}
|
||||||
|
{{ antibot.html() }}
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
{% endif %}
|
||||||
<input accesskey="s" style="margin-left:2px;" type="submit" name="post" value="{% if id %}{{ config.button_reply }}{% else %}{{ config.button_newtopic }}{% endif %}" />{% if config.spoiler_images %} <input id="spoiler" name="spoiler" type="checkbox"> <label for="spoiler">{% trans %}Spoiler Image{% endtrans %}</label>{% endif %}
|
<input accesskey="s" style="margin-left:2px;" type="submit" name="post" value="{% if id %}{{ config.button_reply }}{% else %}{{ config.button_newtopic }}{% endif %}" />{% if config.spoiler_images %} <input id="spoiler" name="spoiler" type="checkbox"> <label for="spoiler">{% trans %}Spoiler Image{% endtrans %}</label>{% endif %}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
, {{ post.ratio }}
|
, {{ post.ratio }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if config.show_filename %}
|
{% if config.show_filename and post.filename %}
|
||||||
,
|
,
|
||||||
{% if post.filename|length > config.max_filename_display %}
|
{% if post.filename|length > config.max_filename_display %}
|
||||||
<span title="{{ post.filename }}">{{ post.filename|truncate(config.max_filename_display) }}</span>
|
<span title="{{ post.filename }}">{{ post.filename|truncate(config.max_filename_display) }}</span>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
, {{ post.ratio }}
|
, {{ post.ratio }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if config.show_filename %}
|
{% if config.show_filename and post.filename %}
|
||||||
,
|
,
|
||||||
{% if post.filename|length > config.max_filename_display %}
|
{% if post.filename|length > config.max_filename_display %}
|
||||||
<span title="{{ post.filename }}">{{ post.filename|truncate(config.max_filename_display) }}</span>
|
<span title="{{ post.filename }}">{{ post.filename|truncate(config.max_filename_display) }}</span>
|
||||||
|
@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `posts_{{ board }}` (
|
|||||||
`sage` int(1) NOT NULL,
|
`sage` int(1) NOT NULL,
|
||||||
`embed` text,
|
`embed` text,
|
||||||
UNIQUE KEY `id` (`id`),
|
UNIQUE KEY `id` (`id`),
|
||||||
KEY `thread` (`thread`),
|
KEY `thread_id` (`thread`, `id`),
|
||||||
KEY `time` (`time`),
|
KEY `time` (`time`),
|
||||||
FULLTEXT KEY `body` (`body`)
|
FULLTEXT KEY `body` (`body`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||||
|
Loading…
Reference in New Issue
Block a user