From cbf44d4d75db5c12fdc694aa321c12a3f9eec403 Mon Sep 17 00:00:00 2001 From: czaks Date: Tue, 18 Feb 2014 20:42:19 +0100 Subject: [PATCH] cleanup: don't trigger rebuild code; fail silently (boardlink race fix; I will test it a bit) --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 4c3f6a4e..d26abcb7 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -1057,7 +1057,7 @@ function clean() { $query->execute() or error(db_error($query)); while ($post = $query->fetch(PDO::FETCH_ASSOC)) { - deletePost($post['id']); + deletePost($post['id'], false, false); } }