function display_access_denied
Search API
7.x theme.inc | display_access_denied() |
6.x theme.inc | display_access_denied() |
4.x theme.inc | display_access_denied() |
5.x theme.inc | display_access_denied() |
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);
}