function system_popup_report_contact_thank_you

6.x system.module system_popup_report_contact_thank_you()
4.x system.module system_popup_report_contact_thank_you()
5.x system.module system_popup_report_contact_thank_you()

This is the thank you page you see after submitting the contact form.

File

modules/system/system.module, line 615

Code

function system_popup_report_contact_thank_you() {
  $rtn = "";

  $rtn .= fp_render_curved_line(t("Contact the FlightPath Production Team"));
  $rtn .= t("Thank you for submitting to the FlightPath Production Team.  They 
             have received your comment and will review it shortly.") . "<br><br>";
  $rtn .= t("You may now close this window.");

  return $rtn;
}