Plugin Directory

Changeset 3194165


Ignore:
Timestamp:
11/21/2024 01:15:04 PM (13 months ago)
Author:
benjaminprojas
Message:

2411.1

Location:
table-of-contents-plus/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • table-of-contents-plus/trunk/includes/class-toc-plus.php

    r3188809 r3194165  
    180180            }
    181181            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'] );
    183183                $re_enqueue_scripts               = true;
    184184            }
    185185            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'] );
    187187                $re_enqueue_scripts               = true;
    188188            }
     
    475475            if ( $this->options['show_heading_text'] && $this->options['visibility'] ) {
    476476                $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'] ) );
    479479                if ( $this->options['visibility_hide_by_default'] ) {
    480480                    $js_vars['visibility_hide_by_default'] = true;
  • table-of-contents-plus/trunk/includes/globals.php

    r3188809 r3194165  
    11<?php
    22
    3 define( 'TOC_VERSION', '2411' );
     3define( 'TOC_VERSION', '2411.1' );
    44define( 'TOC_POSITION_BEFORE_FIRST_HEADING', 1 );
    55define( 'TOC_POSITION_TOP', 2 );
  • table-of-contents-plus/trunk/readme.txt

    r3189849 r3194165  
    44Requires at least: 3.2
    55Tested up to: 6.7
    6 Stable tag: 2411
     6Stable tag: 2411.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    103103
    104104== Changelog ==
     105= 2411.1 =
     106* Released: 21 November 2024
     107* Security hardening reported by WPScan
     108
    105109= 2411 =
    106110* Released: 14 November 2024
  • table-of-contents-plus/trunk/toc.php

    r3188809 r3194165  
    88 * Text Domain: table-of-contents-plus
    99 * Domain Path: /languages
    10  * Version:     2411
     10 * Version:     2411.1
    1111 * License:     GPL2
    1212 */
Note: See TracChangeset for help on using the changeset viewer.