From edeb3df3ce4a6c28d3c61175f20cb39120f78d2a Mon Sep 17 00:00:00 2001 From: 8chan Date: Fri, 3 Apr 2015 18:49:02 -0700 Subject: [PATCH] Make cyclical threads always bump if not sage --- post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.php b/post.php index 16c6a71d..a1e04a91 100644 --- a/post.php +++ b/post.php @@ -933,7 +933,7 @@ elseif (isset($_POST['post'])) { query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error()); } - if (!$post['op'] && !isset($_POST['no-bump']) && strtolower($post['email']) != 'sage' && !$thread['sage'] && ($config['reply_limit'] == 0 || $numposts['replies']+1 < $config['reply_limit'])) { + if (!$post['op'] && !isset($_POST['no-bump']) && strtolower($post['email']) != 'sage' && !$thread['sage'] && ($thread['cycle'] || $config['reply_limit'] == 0 || $numposts['replies']+1 < $config['reply_limit'])) { bumpThread($post['thread']); }