Merge pull request #22185 from woocommerce/fix/21735

Don't wrap layered nav wp_json_encode string in quotes
This commit is contained in:
Claudiu Lodromanean 2019-01-02 12:01:21 -08:00 committed by GitHub
commit 34f472fdf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ class WC_Widget_Layered_Nav extends WC_Widget {
if ( jQuery().selectWoo ) { if ( jQuery().selectWoo ) {
var wc_layered_nav_select = function() { var wc_layered_nav_select = function() {
jQuery( '.dropdown_layered_nav_" . esc_js( $taxonomy_filter_name ) . "' ).selectWoo( { jQuery( '.dropdown_layered_nav_" . esc_js( $taxonomy_filter_name ) . "' ).selectWoo( {
placeholder: '" . wp_json_encode( (string) wp_specialchars_decode( $any_label, ENT_QUOTES ) ) . "', placeholder: " . wp_json_encode( (string) wp_specialchars_decode( $any_label ) ) . ",
minimumResultsForSearch: 5, minimumResultsForSearch: 5,
width: '100%', width: '100%',
allowClear: " . ( $multiple ? 'false' : 'true' ) . ", allowClear: " . ( $multiple ? 'false' : 'true' ) . ",