Skip to content

Commit

Permalink
Fix bug 10760: Filtering on Priority doesn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
giallu committed Jul 28, 2009
1 parent 96988ad commit e4c9e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/filter_api.php
Expand Up @@ -3660,7 +3660,7 @@ function print_filter_show_target_version() {
function print_filter_show_priority() {
global $t_select_modifier, $t_filter;
?><!-- Priority -->
<select <?php echo $t_select_modifier;?> name="<?php FILTER_PROPERTY_PRIORITY_ID;?>[]">
<select <?php echo $t_select_modifier;?> name="<?php echo FILTER_PROPERTY_PRIORITY_ID;?>[]">
<option value="<?php echo META_FILTER_ANY?>" <?php check_selected( $t_filter[FILTER_PROPERTY_PRIORITY_ID], META_FILTER_ANY );?>>[<?php echo lang_get( 'any' )?>]</option>
<?php print_enum_string_option_list( 'priority', $t_filter[FILTER_PROPERTY_PRIORITY_ID] )?>
</select>
Expand Down

0 comments on commit e4c9e22

Please sign in to comment.