function system_popup_report_contact_thank_you
Search API
| 7.x system.module | 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 799 
Code
function system_popup_report_contact_thank_you() {
  $rtn = "";
  $rtn .= fp_render_curved_line(t("Contact the @FlightPath Production Team", array("@FlightPath" => variable_get("system_name", "FlightPath"))));
  $rtn .= t("Thank you for submitting to the @FlightPath Production Team.  They 
             have received your comment and will review it shortly.", array("@FlightPath" => variable_get("system_name", "FlightPath"))) . "<br><br>";
  $rtn .= t("You may now close this window.");
  return $rtn;
}
