File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -683,10 +683,10 @@ function filter_ensure_valid_filter( $p_filter_arr ) {
683
683
$ t_filter_value = META_FILTER_NONE ;
684
684
}
685
685
if ( 'string ' == $ t_multi_field_type ) {
686
- $ t_checked_array [] = db_prepare_string ( $ t_filter_value ) ;
686
+ $ t_checked_array [] = $ t_filter_value ;
687
687
}
688
688
else if ( 'int ' == $ t_multi_field_type ) {
689
- $ t_checked_array [] = db_prepare_int ( $ t_filter_value ) ;
689
+ $ t_checked_array [] = ( int ) $ t_filter_value ;
690
690
}
691
691
else if ( 'array ' == $ t_multi_field_type ) {
692
692
$ t_checked_array [] = $ t_filter_value ;
@@ -714,7 +714,7 @@ function filter_ensure_valid_filter( $p_filter_arr ) {
714
714
if (( $ t_filter_value === 'any ' ) || ( $ t_filter_value === '[any] ' ) ) {
715
715
$ t_filter_value = META_FILTER_ANY ;
716
716
}
717
- $ t_checked_array [] = db_prepare_string ( $ t_filter_value ) ;
717
+ $ t_checked_array [] = $ t_filter_value ;
718
718
}
719
719
$ p_filter_arr ['custom_fields ' ][$ t_cfid ] = $ t_checked_array ;
720
720
}
You can’t perform that action at this time.
0 commit comments