', $context['page_title'], '
', $context['help_text'], '

', $txt['close_window'], '
'; } function template_find_members() { global $context, $settings, $scripturl, $modSettings, $txt; echo ' ', $txt['find_members'], '

', $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 '
    '; $alternate = true; foreach ($context['results'] as $result) { echo '
  • ', $txt['view_profile'], ' ', $result['name'], '
  • '; $alternate = !$alternate; } echo '
', $context['page_index'], '
'; } 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']), '

', $txt['manual_introduction'], '

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

'; } ?>