diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 93c90b0caddb7ed0045ff1f3823c0718bafe26c5..edb8386d9b4714c1223ab09da742feef2413639c 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -1251,7 +1251,7 @@ function taxonomy_term_page($str_tids = '', $depth = 0, $op = 'page') {
         case 'page':
           // Build breadcrumb based on first hierarchy of first term:
           $current->tid = $tids[0];
-          $breadcrumbs = array(array('path' => $_GET['q']));
+          $breadcrumbs = array(array('path' => $_GET['q'], 'title' => $names[0]));
           while ($parents = taxonomy_get_parents($current->tid)) {
             $current = array_shift($parents);
             $breadcrumbs[] = array('path' => 'taxonomy/term/'. $current->tid, 'title' => $current->name);
diff --git a/sites/default/settings.php b/sites/default/settings.php
index 5fe047700c841992b8c4773f7f4efc59499e59a6..31bcbac02fc179a3a421b8fb8294d70e2c24bba2 100644
--- a/sites/default/settings.php
+++ b/sites/default/settings.php
@@ -84,7 +84,7 @@
  *   $db_url = 'mysqli://username:password@localhost/databasename';
  *   $db_url = 'pgsql://username:password@localhost/databasename';
  */
-$db_url = 'mysql://username:password@localhost/databasename';
+$db_url = 'mysql://drupal:drupal@localhost/c_drupal';
 $db_prefix = '';
 
 /**