function system_display_login_help_page

6.x system.module system_display_login_help_page()

This page will be shown when the user clicks the "Need Help Logging In?" link on the login page.

File

modules/system/system.module, line 594

Code

function system_display_login_help_page() {
  //First, are we meant to redirect to a different piece of content?  This is configured in the System Settings.
  $cid = intval(variable_get("login_help_cid", "0"));

  if ($cid > 0) {
    fp_goto("content/$cid");
    return;
  }

  // Else, display a generic message here.
  $rtn = "";

  $rtn .= t("If you need help logging in to FlightPath (eg, you forgot your password or do not have access), contact
              the system administrator or your IT department.");


  return $rtn;

}