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 @@ -706,10 +706,10 @@ function filter_ensure_valid_filter( $p_filter_arr ) {
706
706
$ t_filter_value = META_FILTER_NONE ;
707
707
}
708
708
if ( 'string ' == $ t_multi_field_type ) {
709
- $ t_checked_array [] = db_prepare_string ( $ t_filter_value ) ;
709
+ $ t_checked_array [] = $ t_filter_value ;
710
710
}
711
711
else if ( 'int ' == $ t_multi_field_type ) {
712
- $ t_checked_array [] = db_prepare_int ( $ t_filter_value ) ;
712
+ $ t_checked_array [] = ( int ) $ t_filter_value ;
713
713
}
714
714
else if ( 'array ' == $ t_multi_field_type ) {
715
715
$ t_checked_array [] = $ t_filter_value ;
@@ -737,7 +737,7 @@ function filter_ensure_valid_filter( $p_filter_arr ) {
737
737
if (( $ t_filter_value === 'any ' ) || ( $ t_filter_value === '[any] ' ) ) {
738
738
$ t_filter_value = META_FILTER_ANY ;
739
739
}
740
- $ t_checked_array [] = db_prepare_string ( $ t_filter_value ) ;
740
+ $ t_checked_array [] = $ t_filter_value ;
741
741
}
742
742
$ p_filter_arr ['custom_fields ' ][$ t_cfid ] = $ t_checked_array ;
743
743
}
You can’t perform that action at this time.
0 commit comments