diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-24 11:38:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-24 11:38:08 +0000 |
commit | d29684a6647c2d171b0f8c228de33658e006fd71 (patch) | |
tree | 51e9d2f9868952ef3d1c9e4c16f78e921c0a494a /includes/common.inc | |
parent | 5ff9dd653fdae48b87a5c5ee415a66edc5509cb6 (diff) | |
download | brdo-d29684a6647c2d171b0f8c228de33658e006fd71.tar.gz brdo-d29684a6647c2d171b0f8c228de33658e006fd71.tar.bz2 |
- Added simple referer module, for sake of fun.
Diffstat (limited to 'includes/common.inc')
-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 778f87a39..a89d71576 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -268,6 +268,9 @@ include_once "includes/theme.inc"; include_once "includes/user.inc"; include_once "includes/node.inc"; +// initialize configuration variables: +$conf = variable_init(); + // initialize user session: user_init(); @@ -277,9 +280,6 @@ module_init(); // initialize localization system: $locale = locale_init(); -// initialize configuration variables: -$conf = variable_init(); - // initialize theme: $theme = theme_init(); |