summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-03-08 18:35:04 +0000
committerDries Buytaert <dries@buytaert.net>2004-03-08 18:35:04 +0000
commit11988bcd92f1281a22e38e0723daa0a1f5c0f6e1 (patch)
tree761c64c3ea785320ab1dbaaea47a3282ded1ecb4
parentd3069eefdd7b18ac6ff5a64cce23d49b4da00c37 (diff)
downloadbrdo-11988bcd92f1281a22e38e0723daa0a1f5c0f6e1.tar.gz
brdo-11988bcd92f1281a22e38e0723daa0a1f5c0f6e1.tar.bz2
- Improved drupal_not_found()
-rw-r--r--includes/common.inc2
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'));
}
}