diff options
-rw-r--r-- | includes/common.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/common.inc b/includes/common.inc index a60598f97..c9f577c1b 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -352,9 +352,9 @@ function drupal_not_found() { $return = menu_execute_active_handler($path); } - if (empty($return)) { + if (empty($return) || $return == MENU_NOT_FOUND || $return == MENU_ACCESS_DENIED) { drupal_set_title(t('Page not found')); - $return = ''; + $return = t('The requested page could not be found.'); } // To conserve CPU and bandwidth, omit the blocks. @@ -381,7 +381,7 @@ function drupal_access_denied() { $return = menu_execute_active_handler($path); } - if (empty($return)) { + if (empty($return) || $return == MENU_NOT_FOUND || $return == MENU_ACCESS_DENIED) { drupal_set_title(t('Access denied')); $return = t('You are not authorized to access this page.'); } |