diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-14 19:31:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-14 19:31:28 +0000 |
commit | 2da4122d3c03ff9c763911e2dcaafad584ca48e5 (patch) | |
tree | db5575edd377931e2dd01606fea9d75c9640f91f /includes | |
parent | f0dd6bfb754c492f4a821b0a1870d705da228344 (diff) | |
download | brdo-2da4122d3c03ff9c763911e2dcaafad584ca48e5.tar.gz brdo-2da4122d3c03ff9c763911e2dcaafad584ca48e5.tar.bz2 |
- added new variable: theme_footer which can be used to provide a
footer message like a copyright notice. Themes should use this!
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 9cde011a1..d09ccf2ce 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -7,7 +7,7 @@ function theme_init() { include_once $themes[$user->theme][0]; } else { - include_once $themes[variable_get(default_theme, key($themes))][0]; + include_once $themes[variable_get(theme_default, key($themes))][0]; } return new Theme(); } |