Browse Source

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

pull/40/head
Benjamin Southall 5 years ago
parent
commit
391f63e31f
  1. 4
      inc/mod/pages.php
  2. 3
      templates/themes/catalog/theme.php

4
inc/mod/pages.php

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

3
templates/themes/catalog/theme.php

@ -26,7 +26,8 @@
$b->build($settings, $board);
}
}
} elseif ($action == 'post-thread' || ($settings['update_on_posts'] && $action == 'post') || ($settings['update_on_posts'] && $action == 'post-delete') && in_array($board, $boards)) {
} elseif ($action == 'post-thread' || ($settings['update_on_posts'] && $action == 'post') || ($settings['update_on_posts'] && $action == 'post-delete')
|| $action == 'sticky' || $action == 'lock' && in_array($board, $boards)) {
$b = new Catalog($settings);
$action = generation_strategy("sb_catalog", array($board));

Loading…
Cancel
Save