summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-03-17 07:01:12 +0000
committerDries Buytaert <dries@buytaert.net>2003-03-17 07:01:12 +0000
commit8952e9c53e46bdf0231312c4fe6d01c9b54dc579 (patch)
treebb4307685203dbb4ce025ace55b5726122a79d84 /includes
parent2c0f3c9457b1de508b52b46c2a7bfadd364d0f03 (diff)
downloadbrdo-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.inc6
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();
-
?>