Skip to content

Commit

Permalink
Update archive tag webcomic title filters.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Sisk committed Mar 4, 2013
1 parent cc13a2f commit 9aed0fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions -/php/tags.php
Expand Up @@ -6556,7 +6556,7 @@ public function start_el( &$output, $term, $depth, $args ) {
apply_filters( 'the_permalink', get_permalink() ), apply_filters( 'the_permalink', get_permalink() ),
$selected === get_the_ID() ? ' selected' : '', $selected === get_the_ID() ? ' selected' : '',
$term_pad, $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 )
); );
} }


Expand Down Expand Up @@ -6687,7 +6687,7 @@ public function start_el( &$output, $term, $depth, $args ) {
$output .= sprintf( '<li%s><a href="%s">%s</a></li>', $output .= sprintf( '<li%s><a href="%s">%s</a></li>',
$selected === get_the_ID() ? ' class="current"' : '', $selected === get_the_ID() ? ' class="current"' : '',
apply_filters( 'the_permalink', get_permalink() ), 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 )
); );
} }


Expand Down

0 comments on commit 9aed0fe

Please sign in to comment.