diff --git a/profiles/standard/standard.install b/profiles/standard/standard.install index 9195ad949e1daf53eafda9adffeb855760965c39..99657797a2ecb35efdbd759310b4115768e6b699 100644 --- a/profiles/standard/standard.install +++ b/profiles/standard/standard.install @@ -71,7 +71,7 @@ function standard_install() { // Enable some standard blocks. $admin_theme = 'seven'; - $values = array( + $blocks = array( array( 'module' => 'system', 'delta' => 'main', @@ -194,8 +194,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();