', $context['page_title'], '

'; } // Send an email to a user! function template_custom_email() { global $context, $settings, $options, $txt, $scripturl; echo '

', $context['page_title'], '

', $txt['sendtopic_receiver_name'], ':
', $context['recipient']['link'], '
'; // Can the user see the persons email? if ($context['can_view_receipient_email']) echo '
', $txt['sendtopic_receiver_email'], ':
', $context['recipient']['email_link'], '

'; // If it's a guest we need their details. if ($context['user']['is_guest']) echo '

', $txt['send_email_disclosed'], '
'; // Otherwise show the user that we know their email. else echo '
', $txt['sendtopic_sender_email'], ':
', $txt['send_email_disclosed'], '
', $context['user']['email'], '
'; echo '

'; foreach ($context['form_hidden_vars'] as $key => $value) echo ' '; echo '
'; } function template_report() { global $context, $settings, $options, $txt, $scripturl; echo '

', $txt['report_to_mod'], '

'; if (!empty($context['post_errors'])) { echo '
    '; foreach ($context['post_errors'] as $error) echo '
  • ', $error, '
  • '; echo '
'; } echo '

', $txt['report_to_mod_func'], '


'; if ($context['user']['is_guest']) { echo '
:
'; } echo '
:
'; if ($context['require_verification']) { echo '
', $txt['verification'], ':
', template_control_verification($context['visual_verification_id'], 'all'), '
'; } echo '
'; } ?>