Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/template-tags.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/template-tags.php	(revision 5416)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/template-tags.php	(working copy)
@@ -1282,7 +1282,7 @@
 				);
 			}
 
-			$summary = apply_filters( 'the_excerpt', apply_filters( 'get_the_excerpt', $summary ) );
+			$summary = apply_filters( 'the_excerpt', apply_filters( 'get_the_excerpt', $summary, $post ) );
 		}
 
 		return $summary;
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/reference/template-methods.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/reference/template-methods.php	(revision 5416)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/reference/template-methods.php	(working copy)
@@ -23,7 +23,7 @@
 							$pos = ( $i = strrpos( $title, ':' ) ) ? $i + 1 : 0;
 							echo substr( $title, $pos );
 							?></a>
-						<?php if ( $excerpt = apply_filters( 'get_the_excerpt', $child->post_excerpt ) ) {
+						<?php if ( $excerpt = apply_filters( 'get_the_excerpt', $child->post_excerpt, $child ) ) {
 							echo '&mdash; ' . sanitize_text_field( $excerpt );
 						} ?>
 						<?php if ( is_deprecated( $child->ID ) ) {
