Plugin Directory

Changeset 3411195


Ignore:
Timestamp:
12/04/2025 04:27:28 PM (4 months ago)
Author:
ibachal
Message:

WordPress 6.9 compatiblity fixes

Location:
smart-docs
Files:
88 added
3 edited

Legend:

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

    r3322589 r3411195  
    9494        'hide_empty' => 'no' === $args['hide_empty'] ? false : true,
    9595        'pad_counts' => 1,
    96         'include'    => $args['include'],
    97         'exclude'    => $args['exclude'],
    98         'orderby'    => $args['orderby'],
    99         'order'      => $args['order'],
     96        'orderby'    => esc_attr( $args['orderby'] ),
     97        'order'      => esc_attr( $args['order'] ),
    10098    );
     99   
     100    if ( ! empty( $args['include'] ) && 'all' !== $args['include'] ) {
     101        $terms_args['include'] = esc_attr( $args['include'] );
     102    }
     103    if ( ! empty( $args['exclude'] ) && 'all' !== $args['exclude'] ) {
     104        $terms_args['exclude'] = esc_attr( $args['exclude'] );
     105    }
    101106
    102107    /**
  • smart-docs/trunk/readme.txt

    r3371558 r3411195  
    33Tags: documentation, docs, documents, knowledge base, wiki
    44Requires at least: 5.0
    5 Tested up to: 6.8
     5Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.1.2
     7Stable tag: 1.1.3
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    128128== Changelog ==
    129129
     130= 1.1.3 - December 4, 2025 =
     131* Fix: WordPress 6.9 compatibility fixes
     132
    130133= 1.1.2 - October 2, 2025 =
    131134* Important: Security fixes
  • smart-docs/trunk/smart-docs.php

    r3371558 r3411195  
    66 * Author: IdeaBox Creations
    77 * Author URI: https://ideabox.io/
    8  * Version: 1.1.2
     8 * Version: 1.1.3
    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.2' );
     20define( 'SMART_DOCS_VERSION', '1.1.3' );
    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.