Changeset 3194165
- Timestamp:
- 11/21/2024 01:15:04 PM (13 months ago)
- Location:
- table-of-contents-plus/trunk
- Files:
-
- 4 edited
-
includes/class-toc-plus.php (modified) (2 diffs)
-
includes/globals.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
toc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
table-of-contents-plus/trunk/includes/class-toc-plus.php
r3188809 r3194165 180 180 } 181 181 if ( $atts['label_show'] ) { 182 $this->options['visibility_show'] = wp_kses_post( html_entity_decode( $atts['label_show'] ));182 $this->options['visibility_show'] = wp_kses_post( $atts['label_show'] ); 183 183 $re_enqueue_scripts = true; 184 184 } 185 185 if ( $atts['label_hide'] ) { 186 $this->options['visibility_hide'] = wp_kses_post( html_entity_decode( $atts['label_hide'] ));186 $this->options['visibility_hide'] = wp_kses_post( $atts['label_hide'] ); 187 187 $re_enqueue_scripts = true; 188 188 } … … 475 475 if ( $this->options['show_heading_text'] && $this->options['visibility'] ) { 476 476 $width = ( 'User defined' !== $this->options['width'] ) ? $this->options['width'] : $this->options['width_custom'] . $this->options['width_custom_units']; 477 $js_vars['visibility_show'] = esc_js( wp_kses_post( html_entity_decode( $this->options['visibility_show'] )) );478 $js_vars['visibility_hide'] = esc_js( wp_kses_post( html_entity_decode( $this->options['visibility_hide'] )) );477 $js_vars['visibility_show'] = esc_js( wp_kses_post( $this->options['visibility_show'] ) ); 478 $js_vars['visibility_hide'] = esc_js( wp_kses_post( $this->options['visibility_hide'] ) ); 479 479 if ( $this->options['visibility_hide_by_default'] ) { 480 480 $js_vars['visibility_hide_by_default'] = true; -
table-of-contents-plus/trunk/includes/globals.php
r3188809 r3194165 1 1 <?php 2 2 3 define( 'TOC_VERSION', '2411 ' );3 define( 'TOC_VERSION', '2411.1' ); 4 4 define( 'TOC_POSITION_BEFORE_FIRST_HEADING', 1 ); 5 5 define( 'TOC_POSITION_TOP', 2 ); -
table-of-contents-plus/trunk/readme.txt
r3189849 r3194165 4 4 Requires at least: 3.2 5 5 Tested up to: 6.7 6 Stable tag: 2411 6 Stable tag: 2411.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 103 103 104 104 == Changelog == 105 = 2411.1 = 106 * Released: 21 November 2024 107 * Security hardening reported by WPScan 108 105 109 = 2411 = 106 110 * Released: 14 November 2024 -
table-of-contents-plus/trunk/toc.php
r3188809 r3194165 8 8 * Text Domain: table-of-contents-plus 9 9 * Domain Path: /languages 10 * Version: 2411 10 * Version: 2411.1 11 11 * License: GPL2 12 12 */
Note: See TracChangeset
for help on using the changeset viewer.