1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-31 04:13:49 +01:00

Bugfix: some tracked post citations were not being purged upon thread deletion

This commit is contained in:
Michael Save 2012-04-11 17:36:34 +10:00
parent 9267dbbaa8
commit fa38c0fd6b
2 changed files with 22 additions and 18 deletions

View File

@ -829,6 +829,8 @@
else return false;
}
$ids = array();
// Delete posts and maybe replies
while($post = $query->fetch()) {
if(!$post['thread']) {
@ -846,15 +848,17 @@
// Delete file
file_unlink($board['dir'] . $config['dir']['img'] . $post['file']);
}
$ids[] = (int)$post['id'];
}
$query = prepare(sprintf("DELETE FROM `posts_%s` WHERE `id` = :id OR `thread` = :id", $board['uri']));
$query->bindValue(':id', $id, PDO::PARAM_INT);
$query->execute() or error(db_error($query));
$query = prepare("SELECT `board`, `post` FROM `cites` WHERE `target_board` = :board AND `target` = :id");
$query = prepare("SELECT `board`, `post` FROM `cites` WHERE `target_board` = :board AND (`target` = " . implode(' OR `target` = ', $ids) . ")");
$query->bindValue(':board', $board['uri']);
$query->bindValue(':id', $id, PDO::PARAM_INT);
$query->execute() or error(db_error($query));
while($cite = $query->fetch()) {
if($board['uri'] != $cite['board']) {