', $txt['split'], '

:


'; } /** * A simple confirmation that things were split as expected, with links to the current board and the old and new topics. */ function template_main() { global $context, $txt, $scripturl; echo '

', $txt['split'], '

', $txt['split_successful'], '

'; } /** * The form for selecting which posts to split. */ function template_select() { global $context, $txt, $scripturl, $options; echo '

', $txt['split'], ' - ', $txt['select_split_posts'], '

', $txt['please_select_split'], '
    '; foreach ($context['not_selected']['messages'] as $message) echo '
  • ', sprintf($txt['post_by_member'], $message['subject'], $message['poster']), ' ', $message['time'], '
    ', $message['body'], '
  • '; echo '

', $txt['split_selected_posts'], ' (', $txt['split_reset_selection'], ')

', $txt['split_selected_posts_desc'], '
    '; if (!empty($context['selected']['messages'])) foreach ($context['selected']['messages'] as $message) echo '
  • ', sprintf($txt['post_by_member'], $message['subject'], $message['poster']), ' ', $message['time'], '
    ', $message['body'], '
  • '; echo '

'; } ?>