summaryrefslogtreecommitdiff
path: root/profiles/minimal
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-07-08 03:41:27 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-07-08 03:41:27 +0000
commit8f5c296cc08ee58206d204f61fe13abbbe050baf (patch)
treedf85fe532263b63fa5a911221a138a62440cfd5a /profiles/minimal
parent893fba439bd0fa2d17075715a383a374ff2a4cc6 (diff)
downloadbrdo-8f5c296cc08ee58206d204f61fe13abbbe050baf.tar.gz
brdo-8f5c296cc08ee58206d204f61fe13abbbe050baf.tar.bz2
#845742 by Damien Tournoud: Make Bartik the default core theme.
Diffstat (limited to 'profiles/minimal')
-rw-r--r--profiles/minimal/minimal.install11
1 files changed, 6 insertions, 5 deletions
diff --git a/profiles/minimal/minimal.install b/profiles/minimal/minimal.install
index 49bb46da7..d7caa03dd 100644
--- a/profiles/minimal/minimal.install
+++ b/profiles/minimal/minimal.install
@@ -8,11 +8,12 @@
*/
function minimal_install() {
// Enable some standard blocks.
+ $default_theme = variable_get('theme_default', 'bartik');
$values = array(
array(
'module' => 'system',
'delta' => 'main',
- 'theme' => 'garland',
+ 'theme' => $default_theme,
'status' => 1,
'weight' => 0,
'region' => 'content',
@@ -22,7 +23,7 @@ function minimal_install() {
array(
'module' => 'user',
'delta' => 'login',
- 'theme' => 'garland',
+ 'theme' => $default_theme,
'status' => 1,
'weight' => 0,
'region' => 'sidebar_first',
@@ -32,7 +33,7 @@ function minimal_install() {
array(
'module' => 'system',
'delta' => 'navigation',
- 'theme' => 'garland',
+ 'theme' => $default_theme,
'status' => 1,
'weight' => 0,
'region' => 'sidebar_first',
@@ -42,7 +43,7 @@ function minimal_install() {
array(
'module' => 'system',
'delta' => 'management',
- 'theme' => 'garland',
+ 'theme' => $default_theme,
'status' => 1,
'weight' => 1,
'region' => 'sidebar_first',
@@ -52,7 +53,7 @@ function minimal_install() {
array(
'module' => 'system',
'delta' => 'help',
- 'theme' => 'garland',
+ 'theme' => $default_theme,
'status' => 1,
'weight' => 0,
'region' => 'help',