From 93553303b28d21cd2c55aaffc5a5831b6ccaf5c0 Mon Sep 17 00:00:00 2001 From: Michael Save Date: Mon, 16 Apr 2012 20:14:57 +1000 Subject: [PATCH] rebuild after sticky, lock, etc. --- inc/mod/pages.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 7e6cddfe..31c78528 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -312,6 +312,10 @@ function mod_lock($board, $unlock, $post) { $query->bindValue(':id', $post); $query->bindValue(':locked', $unlock ? 0 : 1); $query->execute() or error(db_error($query)); + if($query->rowCount()) { + buildThread($post); + buildIndex(); + } header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']); } @@ -329,6 +333,10 @@ function mod_sticky($board, $unsticky, $post) { $query->bindValue(':id', $post); $query->bindValue(':sticky', $unsticky ? 0 : 1); $query->execute() or error(db_error($query)); + if($query->rowCount()) { + buildThread($post); + buildIndex(); + } header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']); } @@ -346,6 +354,10 @@ function mod_bumplock($board, $unbumplock, $post) { $query->bindValue(':id', $post); $query->bindValue(':bumplock', $unbumplock ? 0 : 1); $query->execute() or error(db_error($query)); + if($query->rowCount()) { + buildThread($post); + buildIndex(); + } header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']); }