Plugin Directory

Changeset 3371558


Ignore:
Timestamp:
10/02/2025 06:49:54 AM (6 months ago)
Author:
ibachal
Message:

Security fix

Location:
smart-docs
Files:
88 added
3 edited

Legend:

Unmodified
Added
Removed
  • smart-docs/trunk/includes/template-functions.php

    r3322589 r3371558  
    5151        $desc = get_option( 'smartdocs_hero_description' );
    5252        if ( ! empty( $desc ) ) {
    53             echo '<div class="smartdocs-hero-description">' . wpautop( wptexturize( $desc ) ) . '</div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     53            echo '<div class="smartdocs-hero-description">' . wpautop( wptexturize( wp_kses_post( $desc ) ) ) . '</div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    5454        }
    5555    }
  • smart-docs/trunk/readme.txt

    r3329039 r3371558  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    128128== Changelog ==
    129129
     130= 1.1.2 - October 2, 2025 =
     131* Important: Security fixes
     132
    130133= 1.1.1 - July 5, 2025 =
    131134* Important: Security fixes
  • smart-docs/trunk/smart-docs.php

    r3329039 r3371558  
    66 * Author: IdeaBox Creations
    77 * Author URI: https://ideabox.io/
    8  * Version: 1.1.1
     8 * Version: 1.1.2
    99 * License: GNU General Public License v3.0
    1010 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1818}
    1919
    20 define( 'SMART_DOCS_VERSION', '1.1.1' );
     20define( 'SMART_DOCS_VERSION', '1.1.2' );
    2121define( 'SMART_DOCS_PATH', plugin_dir_path( __FILE__ ) );
    2222define( 'SMART_DOCS_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.