$rebuild_after switch for deleteFile()

This commit is contained in:
Savetheinternet 2011-12-03 15:41:14 +11:00
parent 95920a6972
commit 79aea393c6

View File

@ -641,7 +641,7 @@
}
// Remove file from post
function deleteFile($id, $remove_entirely_if_already=true) {
function deleteFile($id, $remove_entirely_if_already=true, $rebuild_after=true) {
global $board, $config;
$query = prepare(sprintf("SELECT `thread`,`thumb`,`file` FROM `posts_%s` WHERE `id` = :id LIMIT 1", $board['uri']));
@ -676,7 +676,7 @@
$query->bindValue(':id', $id, PDO::PARAM_INT);
$query->execute() or error(db_error($query));
if($post['thread'])
if($post['thread'] && $rebuild_after)
buildThread($post['thread']);
}