summaryrefslogtreecommitdiff
path: root/profiles/standard
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/standard')
-rw-r--r--profiles/standard/standard.install6
1 files changed, 3 insertions, 3 deletions
diff --git a/profiles/standard/standard.install b/profiles/standard/standard.install
index 5d447177f..ccc70443f 100644
--- a/profiles/standard/standard.install
+++ b/profiles/standard/standard.install
@@ -65,7 +65,7 @@ function standard_install() {
// Enable some standard blocks.
$default_theme = variable_get('theme_default', 'bartik');
$admin_theme = 'seven';
- $values = array(
+ $blocks = array(
array(
'module' => 'system',
'delta' => 'main',
@@ -188,8 +188,8 @@ function standard_install() {
),
);
$query = db_insert('block')->fields(array('module', 'delta', 'theme', 'status', 'weight', 'region', 'pages', 'cache'));
- foreach ($values as $record) {
- $query->values($record);
+ foreach ($blocks as $block) {
+ $query->values($block);
}
$query->execute();