From 9aed0fe7f288c80bf45733f7fb903406526be8f3 Mon Sep 17 00:00:00 2001 From: Michael Sisk Date: Sun, 3 Mar 2013 19:34:17 -0500 Subject: [PATCH] Update archive tag webcomic title filters. --- -/php/tags.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/-/php/tags.php b/-/php/tags.php index 6dc3619..e18a11a 100644 --- a/-/php/tags.php +++ b/-/php/tags.php @@ -6556,7 +6556,7 @@ public function start_el( &$output, $term, $depth, $args ) { apply_filters( 'the_permalink', get_permalink() ), $selected === get_the_ID() ? ' selected' : '', $term_pad, - apply_filters( 'term_dropdown_webcomic_title', the_title( '', '', false ), $args, $i ) + apply_filters( 'term_dropdown_webcomic_title', the_title( '', '', false ), get_post(), $i ) ); } @@ -6687,7 +6687,7 @@ public function start_el( &$output, $term, $depth, $args ) { $output .= sprintf( '%s', $selected === get_the_ID() ? ' class="current"' : '', apply_filters( 'the_permalink', get_permalink() ), - $webcomic_image ? WebcomicTag::the_webcomic( $webcomic_image, 'self' ) : apply_filters( 'term_list_webcomic_title', the_title( '', '', false ), $args, $i ) + $webcomic_image ? WebcomicTag::the_webcomic( $webcomic_image, 'self' ) : apply_filters( 'term_list_webcomic_title', the_title( '', '', false ), get_post(), $i ) ); }