Skip to content

Commit

Permalink
Fix for bug #8821, Filtering on tags not quite working
Browse files Browse the repository at this point in the history
  • Loading branch information
Daryn Warriner committed Dec 31, 2008
1 parent 01e68c3 commit 61a03a3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/filter_api.php
Expand Up @@ -1630,6 +1630,12 @@ function filter_get_bug_rows( &$p_page_number, &$p_per_page, &$p_page_count, &$p

# tags
$c_tag_string = trim( $t_filter[FILTER_PROPERTY_TAG_STRING] );
$c_tag_select = trim( $t_filter[FILTER_PROPERTY_TAG_SELECT] );
if( is_blank( $c_tag_string ) && !is_blank( $c_tag_select ) && $c_tag_select != 0 ) {
$t_tag = tag_get( $c_tag_select );
$c_tag_string = $t_tag['name'];
}

if( !is_blank( $c_tag_string ) ) {
$t_tags = tag_parse_filters( $c_tag_string );

Expand Down

0 comments on commit 61a03a3

Please sign in to comment.