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 1040 
Code
function system_popup_report_contact_thank_you() {
  $rtn = "";
  $rtn .= "<p>";
  $rtn .= t("Thank you for submitting to the @FlightPath Production Team.  We 
             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.");
  $rtn .= "</p>";
  $rtn .= "<p>" . "<a href='javascript:parent.fpCloseLargeIframeDialog();' class='button'>" . t("Close Window") . "</a></p>";
  return $rtn;
}
