function display_not_found

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

File

includes/theme.inc, line 1049

Code

function display_not_found() {

  $page = array(
    "title" => t("Not Found"),
    "content" => "<h2>" . t("Page not found") . "</h2>" . t("Sorry, the requested page could not be found."),
  );

  fp_display_page($page);
}