diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-17 07:01:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-17 07:01:12 +0000 |
commit | 8952e9c53e46bdf0231312c4fe6d01c9b54dc579 (patch) | |
tree | bb4307685203dbb4ce025ace55b5726122a79d84 /includes | |
parent | 2c0f3c9457b1de508b52b46c2a7bfadd364d0f03 (diff) | |
download | brdo-8952e9c53e46bdf0231312c4fe6d01c9b54dc579.tar.gz brdo-8952e9c53e46bdf0231312c4fe6d01c9b54dc579.tar.bz2 |
- Rollback: do not initialize the theme before initializing the user.
Diffstat (limited to 'includes')
-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 57b79055d..55cc89530 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -946,13 +946,13 @@ $conf = variable_init(isset($conf) ? $conf : array()); // set error handler: set_error_handler("error_handler"); +// initialize installed modules: +module_init(); + // initialize localization system: $locale = locale_init(); // initialize theme: $theme = theme_init(); -// initialize installed modules: -module_init(); - ?> |