diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-03-08 18:35:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-03-08 18:35:04 +0000 |
commit | 11988bcd92f1281a22e38e0723daa0a1f5c0f6e1 (patch) | |
tree | 761c64c3ea785320ab1dbaaea47a3282ded1ecb4 | |
parent | d3069eefdd7b18ac6ff5a64cce23d49b4da00c37 (diff) | |
download | brdo-11988bcd92f1281a22e38e0723daa0a1f5c0f6e1.tar.gz brdo-11988bcd92f1281a22e38e0723daa0a1f5c0f6e1.tar.bz2 |
- Improved drupal_not_found()
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 8a1a4eb93..b341460b5 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -266,7 +266,7 @@ function drupal_not_found() { menu_execute_active_handler(); } else { - print theme("page", '<h1>'. t('Page not found') .'</h1>'); + print theme('page', '', t('Page not found')); } } |