diff --git a/templates/system/breadcrumb.vars.php b/templates/system/breadcrumb.vars.php
index 70fb9d9..108cf61 100644
--- a/templates/system/breadcrumb.vars.php
+++ b/templates/system/breadcrumb.vars.php
@@ -18,10 +18,14 @@ function bootstrap_preprocess_breadcrumb(&$variables) {
 
   if (theme_get_setting('bootstrap_breadcrumb_title') && !empty($breadcrumb)) {
     $item = menu_get_item();
-    $breadcrumb[] = array(
-      // If we are on a non-default tab, use the tab's title.
-      'data' => !empty($item['tab_parent']) ? check_plain($item['title']) : drupal_get_title(),
-      'class' => array('active'),
-    );
+
+    $page_title = !empty($item['tab_parent']) ? check_plain($item['title']) : drupal_get_title();
+    if (!empty($page_title)) {
+      $breadcrumb[] = array(
+        // If we are on a non-default tab, use the tab's title.
+        'data' => $page_title,
+        'class' => array('active'),
+      );
+    }
   }
 }
