Index: template.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/austin/template.php,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 template.php
--- template.php	25 Mar 2009 23:37:34 -0000	1.1.2.1
+++ template.php	11 Jan 2010 00:44:07 -0000
@@ -237,44 +237,6 @@ function austin_form_element($element, $
   return $output;
 }
 
-
-/**
- * Return a themed breadcrumb trail.
- *
- * @param $breadcrumb
- *   An array containing the breadcrumb links.
- * @return
- *   A string containing the breadcrumb output.
- */
-function austin_breadcrumb($breadcrumb) {
-  // Determine if we are to display the breadcrumb.
-  $show_breadcrumb = theme_get_setting('zen_breadcrumb');
-  if ($show_breadcrumb == 'yes' || $show_breadcrumb == 'admin' && arg(0) == 'admin') {
-
-    // Optionally get rid of the homepage link.
-    $show_breadcrumb_home = theme_get_setting('zen_breadcrumb_home');
-    if (!$show_breadcrumb_home) {
-      array_shift($breadcrumb);
-    }
-
-    // Return the breadcrumb with separators.
-    if (!empty($breadcrumb)) {
-      $breadcrumb_separator = theme_get_setting('zen_breadcrumb_separator');
-      $trailing_separator = $title = '';
-      if (theme_get_setting('zen_breadcrumb_title')) {
-        $trailing_separator = $breadcrumb_separator;
-        $title = menu_get_active_title();
-      }
-      elseif (theme_get_setting('zen_breadcrumb_trailing')) {
-        $trailing_separator = $breadcrumb_separator;
-      }
-      return '<div class="breadcrumb"><span class="descriptive-text">You are here: </span>' . implode($breadcrumb_separator, $breadcrumb) . "$trailing_separator$title</div>";
-    }
-  }
-  // Otherwise, return an empty string.
-  return '';
-}
-
 function austin_views_view_field__forum__sticky($view, $field, $row) {
   if ($row->node_sticky) {
     return theme('image', './misc/forum-sticky.png');
