Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-archive-topic.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-archive-topic.php	(revision 3947)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-archive-topic.php	(working copy)
@@ -10,6 +10,8 @@
 
 <div id="bbpress-forums">
 
+	<?php bbp_breadcrumb(); ?>
+
 	<?php if ( bbp_is_topic_tag() ) bbp_topic_tag_description(); ?>
 
 	<?php do_action( 'bbp_template_before_topics_index' ); ?>
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-search.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-search.php	(revision 3947)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-search.php	(working copy)
@@ -10,6 +10,8 @@
 
 <div id="bbpress-forums">
 
+	<?php bbp_breadcrumb(); ?>
+
 	<?php bbp_set_query_name( 'bbp_search' ); ?>
 
 	<?php do_action( 'bbp_template_before_search' ); ?>
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-forum.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-forum.php	(revision 3947)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-forum.php	(working copy)
@@ -11,6 +11,8 @@
 
 <div id="bbpress-forums">
 
+	<?php bbp_breadcrumb(); ?>
+
 	<?php if ( post_password_required() ) : ?>
 
 		<?php bbp_get_template_part( 'form', 'protected' ); ?>
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-topic.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-topic.php	(revision 3947)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-topic.php	(working copy)
@@ -11,6 +11,8 @@
 
 <div id="bbpress-forums">
 
+	<?php bbp_breadcrumb(); ?>
+
 	<h2><?php bbp_topic_title(); ?></h2>
 
 	<?php do_action( 'bbp_template_before_single_topic' ); ?>
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php	(revision 3947)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php	(working copy)
@@ -2,6 +2,8 @@
 
 <div id="bbpress-forums">
 
+	<?php bbp_breadcrumb(); ?>
+
 <?php endif; ?>
 
 <?php if ( bbp_current_user_can_access_create_topic_form() ) : ?>
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php	(revision 3947)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php	(working copy)
@@ -52,15 +52,11 @@
 /**
  * Customized breadcrumb arguments
  * Breadcrumb Root Text: "WordPress Support"
- * Custom seperator `«` and `»`
+ * Custom separator: `«` and `»`
  *
  * @uses bbp_before_get_breadcrumb_parse_args() To parse the custom arguments
  */
 function wporg_support_breadcrumb() {
-	// HTML
-	$args['before']          = '';
-	$args['after']           = '';
-
 	// Separator
 	$args['sep']             = is_rtl() ? __( '&laquo;', 'wporg-forums' ) : __( '&raquo;', 'wporg-forums' );
 	$args['pad_sep']         = 1;
@@ -85,6 +81,7 @@
 
 	return $args;
 }
+add_filter( 'bbp_before_get_breadcrumb_parse_args', 'wporg_support_breadcrumb' );
 
 /**
  * Register these bbPress views:
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css	(revision 3947)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css	(working copy)
@@ -75,6 +75,10 @@
 	height: 0;
 }
 
+#bbpress-forums h2 {
+	clear: both;
+}
+
 /**
  * 4.0 Overrides
  */
