61 | | var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>', |
62 | | pagenow = '<?php echo $current_screen->id; ?>', |
63 | | typenow = '<?php echo $current_screen->post_type; ?>', |
64 | | adminpage = '<?php echo $admin_body_class; ?>', |
65 | | thousandsSeparator = '<?php echo addslashes( $wp_locale->number_format['thousands_sep'] ); ?>', |
66 | | decimalPoint = '<?php echo addslashes( $wp_locale->number_format['decimal_point'] ); ?>', |
| 61 | var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>', |
| 62 | pagenow = '<?php echo esc_js( $current_screen->id ); ?>', |
| 63 | typenow = '<?php echo esc_js( $current_screen->post_type ); ?>', |
| 64 | adminpage = '<?php echo esc_js( $admin_body_class ); ?>', |
| 65 | thousandsSeparator = '<?php echo esc_js( addslashes( $wp_locale->number_format['thousands_sep'] ) ); ?>', |
| 66 | decimalPoint = '<?php echo esc_js( addslashes( $wp_locale->number_format['decimal_point'] ) ); ?>', |