Rebuild themes after stickying or locking post, so that catalog gets rebuilt

This commit is contained in:
Benjamin Southall 2019-08-26 05:38:22 +10:00
parent eefa9e3790
commit 2b741c7477
2 changed files with 6 additions and 1 deletions

View file

@ -1099,6 +1099,8 @@ function mod_lock($board, $unlock, $post) {
modLog(($unlock ? 'Unlocked' : 'Locked') . " thread #{$post}");
buildThread($post);
buildIndex();
// trigger themes
rebuildThemes('lock', $board);
}
if ($config['mod']['dismiss_reports_on_lock']) {
@ -1133,6 +1135,8 @@ function mod_sticky($board, $unsticky, $post) {
modLog(($unsticky ? 'Unstickied' : 'Stickied') . " thread #{$post}");
buildThread($post);
buildIndex();
// trigger themes
rebuildThemes('sticky', $board);
}
header('Location: ?/' . sprintf($config['board_path'], $board) . $config['file_index'], true, $config['redirect_http']);