diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-08-26 15:00:17 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-08-26 15:00:17 +0000 |
commit | 2a2a7f3f514a12ef2ebd9805340a897a258f988b (patch) | |
tree | b205a2a763312c40fa58b676017378acfe750e7d /includes/common.inc | |
parent | 9d6dcc5682706c3f2d69220243a3c58d20c74200 (diff) | |
download | brdo-2a2a7f3f514a12ef2ebd9805340a897a258f988b.tar.gz brdo-2a2a7f3f514a12ef2ebd9805340a897a258f988b.tar.bz2 |
- Patch #423992 by Davy Van Den Brempt: remove unused variables.
Diffstat (limited to 'includes/common.inc')
-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 25f9fbdad..b5686cab7 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -912,7 +912,7 @@ function _drupal_log_error($error, $fatal = FALSE) { drupal_set_title(t('Error')); // We fallback to a maintenance page at this point, because the page generation // itself can generate errors. - print theme('maintenance_page', t('The website encountered an unexpected error. Please try again later.'), FALSE); + print theme('maintenance_page', t('The website encountered an unexpected error. Please try again later.')); exit; } } |