diff --git a/includes/theme.inc b/includes/theme.inc
index 806e5ee..62f1a10 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -2290,7 +2290,7 @@ function template_process_page(&$variables) {
     // re-use the cache of an already rendered menu containing the active link
     // for the current page.
     // @see menu_tree_page_data()
-    $variables['breadcrumb'] = theme('breadcrumb', array('breadcrumb' => drupal_get_breadcrumb()));
+    $variables['breadcrumb'] = (theme_get_setting('toggle_breadcrumb') ? theme('breadcrumb', array('breadcrumb' => drupal_get_breadcrumb())) : '');
   }
   if (!isset($variables['title'])) {
     $variables['title'] = drupal_get_title();
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 0fe88ea..6e63912 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -404,4 +404,5 @@ function system_theme_settings($form, &$form_state, $key = '') {
     'favicon'                   => t('Shortcut icon'),
     'main_menu'                 => t('Main menu'),
     'secondary_menu'            => t('Secondary menu'),
+    'breadcrumb'                => t('Breadcrumb'),
   );

