From 00bd5e8d2033c14fe1fd7b15a0db1b1827d549b9 Mon Sep 17 00:00:00 2001 From: Macil Tech Date: Fri, 18 Jan 2013 23:13:08 -0600 Subject: [PATCH] Remove buildThread() call from mod_deletefile because deleteFile() already calls it. --- inc/mod/pages.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 4f1ab73c..6261d4af 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -1019,13 +1019,6 @@ function mod_deletefile($board, $post) { // Record the action 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 buildIndex();