diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-08 19:24:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-08 19:24:11 +0000 |
commit | 9321ee109d2381c7def680d4f2e76eee688d6087 (patch) | |
tree | 8b8cc0d82d97ed44177017f008a438e0c362c819 /includes | |
parent | 04037a501164f92e534c1cf0ef07c90685a9eb3d (diff) | |
download | brdo-9321ee109d2381c7def680d4f2e76eee688d6087.tar.gz brdo-9321ee109d2381c7def680d4f2e76eee688d6087.tar.bz2 |
- Patch #93536 by Gabor: eliminate remaining bluemarine traces from core code.
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 f8a3313b5..e90fb36f1 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -42,7 +42,7 @@ function init_theme() { // Only select the user selected theme if it is available in the // list of enabled themes. - $theme = $user->theme && $themes[$user->theme]->status ? $user->theme : variable_get('theme_default', 'bluemarine'); + $theme = $user->theme && $themes[$user->theme]->status ? $user->theme : variable_get('theme_default', 'garland'); // Allow modules to override the present theme... only select custom theme // if it is available in the list of installed themes. |