From 3b5561d1a40076121c332f9c83de0c8fafda0693 Mon Sep 17 00:00:00 2001 From: ctrlcctrlv Date: Wed, 28 Aug 2013 21:31:10 +0000 Subject: [PATCH] Bugfix: Circlepuller is a dumbass and broke many mod actions, don't merge his commits without testing them --- inc/mod/pages.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 105061e9..bba16d6d 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -1242,7 +1242,7 @@ function mod_ban_post($board, $delete, $post, $token = false) { // Rebuild board buildIndex(); // Rebuild themes - rebuildThemes('post-delete', $board['uri']); + rebuildThemes('post-delete', $board); } header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']); @@ -1338,7 +1338,7 @@ function mod_delete($board, $post) { // Rebuild board buildIndex(); // Rebuild themes - rebuildThemes('post-delete', $board['uri']); + rebuildThemes('post-delete', $board); // Redirect header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']); } @@ -1360,7 +1360,7 @@ function mod_deletefile($board, $post) { // Rebuild board buildIndex(); // Rebuild themes - rebuildThemes('post-delete', $board['uri']); + rebuildThemes('post-delete', $board); // Redirect header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']); @@ -1401,7 +1401,7 @@ function mod_spoiler_image($board, $post) { buildIndex(); // Rebuild themes - rebuildThemes('post-delete', $board['uri']); + rebuildThemes('post-delete', $board); // Redirect header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']);