Plugin Directory

Changeset 3067321


Ignore:
Timestamp:
04/09/2024 06:44:52 AM (2 years ago)
Author:
ashishajani
Message:

Resolved exclude parameter issue

Location:
wp-simple-html-sitemap/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-simple-html-sitemap/trunk/inc/wshs_admin_view.php

    r3047807 r3067321  
    324324 */
    325325function wshs_build_tree(array $elements, $parentid = 0) {
    326 
    327     if (!is_array($elements) || !is_int($parentid)) {
     326   
     327    if (!is_array($elements) || !is_int((int) $parentid)) {
    328328        return array();
    329329    }
    330 
     330   
    331331    $branch = array();
    332332    foreach ($elements as $element) {
  • wp-simple-html-sitemap/trunk/readme.txt

    r3054072 r3067321  
    66Tested up to: 6.4.3
    77Requires PHP: 7.4
    8 Stable tag: 2.9
     8Stable tag: 3.0
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    121121== Changelog ==
    122122
     123= 3.0 =
     124* Resolve an issue related to exclude parameter
     125
    123126= 2.9 =
    124127* Updated security standards.
  • wp-simple-html-sitemap/trunk/wordpress_simple_html_sitemap.php

    r3054072 r3067321  
    55 * Description: Using WordPress Simple HTML Sitemap plugin, you can add HTML Sitemap anywhere on the website using Shortcode.
    66 * Author: Ashish Ajani
    7  * Version: 2.9
     7 * Version: 3.0
    88 * Author: Ashish Ajani
    99 * Author URI: http://freelancer-coder.com/
Note: See TracChangeset for help on using the changeset viewer.