1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-18 09:04:44 +01:00

Bugfix: Circlepuller is a dumbass and broke many mod actions, don't merge his commits without testing them

This commit is contained in:
ctrlcctrlv 2013-08-28 21:31:10 +00:00 committed by Michael Foster
parent 9f3dfc2448
commit bdc15d2869

View File

@ -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']);