Skip to content

Commit f35b4f0

Browse files
authored
Merge pull request #2 from ken-ll/fix/typo
fix typo that caused a fatal error
2 parents 24c3212 + e68dd6c commit f35b4f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fewer-tags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public function redirect_tag_pages() {
116116
public function filter_get_the_tags( $tags ) {
117117
if ( is_array( $tags ) ) {
118118
foreach ( $tags as $key => $tag ) {
119-
if ( $tag->count < $$this->min_posts_count ) {
119+
if ( $tag->count < $this->min_posts_count ) {
120120
unset( $tags[ $key ] );
121121
}
122122
}

0 commit comments

Comments
 (0)