function display_access_denied

6.x theme.inc display_access_denied()
4.x theme.inc display_access_denied()
5.x theme.inc display_access_denied()
1 call to display_access_denied()
index.php in ./index.php
The primary entry point for FlightPath.

File

includes/theme.inc, line 1060

Code

function display_access_denied() {
  $page = array(
    "title" => t("Access Denied"),
    "content" => "<h2>" . t("Access Denied") . "</h2>" . t("Sorry, but you do not have access to the requested page or function."),
  );

  fp_display_page($page);
}