=== modified file 'modules/user/user.test'
--- modules/user/user.test	2009-07-31 19:01:01 +0000
+++ modules/user/user.test	2009-07-31 20:57:57 +0000
@@ -962,15 +962,15 @@ class UserBlocksUnitTests extends Drupal
     $edit['name'] = $user->name;
     $edit['pass'] = $user->pass_raw;
     $this->drupalPost('admin/settings/permissions', $edit, t('Log in'));
-    $this->assertText(t('Log out'), t('Logged in.'));
+    $this->assertNoText(t('User login'), t('Logged in.'));
 
     // Check that we are still on the same page.
     $this->assertPattern('!<title.*?' . t('Permissions') . '.*?</title>!', t('Still on the same page after login for access denied page'));
 
     // Now, log out and repeat with a non-403 page.
-    $this->clickLink(t('Log out'));
+    $this->drupalLogout();
     $this->drupalPost('filter/tips', $edit, t('Log in'));
-    $this->assertText(t('Log out'), t('Logged in.'));
+    $this->assertNoText(t('User login'), t('Logged in.'));
     $this->assertPattern('!<title.*?' . t('Compose tips') . '.*?</title>!', t('Still on the same page after login for allowed page'));
   }
 

=== modified file 'profiles/default/default.profile'
--- profiles/default/default.profile	2009-07-31 19:44:09 +0000
+++ profiles/default/default.profile	2009-07-31 20:55:22 +0000
@@ -114,6 +114,36 @@ function default_profile_site_setup(&$in
       'pages' => '',
       'cache' => -1,
     ),
+    array(
+      'module' => 'system',
+      'delta' => 'main',
+      'theme' => 'seven',
+      'status' => 1,
+      'weight' => 0,
+      'region' => 'content',
+      'pages' => '',
+      'cache' => -1,
+    ),
+    array(
+      'module' => 'system',
+      'delta' => 'help',
+      'theme' => 'seven',
+      'status' => 1,
+      'weight' => 0,
+      'region' => 'help',
+      'pages' => '',
+      'cache' => -1,
+    ),
+    array(
+      'module' => 'user',
+      'delta' => 'login',
+      'theme' => 'seven',
+      'status' => 1,
+      'weight' => 10,
+      'region' => 'content',
+      'pages' => '',
+      'cache' => -1,
+    ),
   );
   $query = db_insert('block')->fields(array('module', 'delta', 'theme', 'status', 'weight', 'region', 'pages', 'cache'));
   foreach ($values as $record) {

