Improve spoiler action
This commit is contained in:
parent
9244cafe9c
commit
fd54de7126
@ -1120,6 +1120,8 @@
|
||||
$config['mod']['bandelete'] = MOD;
|
||||
// Remove bans
|
||||
$config['mod']['unban'] = MOD;
|
||||
// Spoiler file (and keep post)
|
||||
$config['mod']['deletefile'] = JANITOR;
|
||||
// Delete file (and keep post)
|
||||
$config['mod']['deletefile'] = JANITOR;
|
||||
// Delete all posts by IP
|
||||
|
@ -1467,6 +1467,14 @@ function mod_spoiler_image($board, $post) {
|
||||
error($config['error']['noaccess']);
|
||||
|
||||
// Delete file
|
||||
$query = prepare(sprintf("SELECT `thumb`, `thread` FROM ``posts_%s`` WHERE id = :id", $board));
|
||||
$query->bindValue(':id', $post, PDO::PARAM_INT);
|
||||
$query->execute() or error(db_error($query));
|
||||
$result = $query->fetch(PDO::FETCH_ASSOC);
|
||||
|
||||
file_unlink($board . '/' . $config['dir']['thumb'] . $result['thumb']);
|
||||
|
||||
// Make thumbnail spoiler
|
||||
$query = prepare(sprintf("UPDATE ``posts_%s`` SET `thumb` = :thumb, `thumbwidth` = :thumbwidth, `thumbheight` = :thumbheight WHERE `id` = :id", $board));
|
||||
$query->bindValue(':thumb', "spoiler");
|
||||
$query->bindValue(':thumbwidth', 128, PDO::PARAM_INT);
|
||||
@ -1477,6 +1485,9 @@ function mod_spoiler_image($board, $post) {
|
||||
// Record the action
|
||||
modLog("Spoilered file from post #{$post}");
|
||||
|
||||
// Rebuild thread
|
||||
buildThread($result['thread'] ? $result['thread'] : $post);
|
||||
|
||||
// Rebuild board
|
||||
buildIndex();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user