', $context['page_title'], ' ', template_css(), '
', $context['help_text'], '

', $txt['close_window'], '
'; } /** * The template for the popup for finding members */ function template_find_members() { global $context, $settings, $scripturl, $modSettings, $txt; echo ' ', $txt['find_members'], ' ', template_css(), '

', $txt['find_members'], '

', $txt['find_username'], ':

', $txt['find_wildcards'], '
'; // Only offer to search for buddies if we have some! if (!empty($context['show_buddies'])) echo '
'; echo '

', $txt['find_results'], '

'; if (empty($context['results'])) echo '

', $txt['find_no_results'], '

'; else { echo '
'; } echo '
'; if (empty($context['results'])) echo ' '; echo ' '; } /** * The main help page */ function template_manual() { global $context, $scripturl, $txt; echo '

', $txt['manual_smf_user_help'], '

', sprintf($txt['manual_welcome'], $context['forum_name_html_safe']), '

', $txt['manual_introduction'], '

', sprintf($txt['manual_docs_and_credits'], $context['wiki_url'], $scripturl . '?action=credits'), '

'; } ?>