Changeset 3067321
- Timestamp:
- 04/09/2024 06:44:52 AM (2 years ago)
- Location:
- wp-simple-html-sitemap/trunk
- Files:
-
- 3 edited
-
inc/wshs_admin_view.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wordpress_simple_html_sitemap.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-simple-html-sitemap/trunk/inc/wshs_admin_view.php
r3047807 r3067321 324 324 */ 325 325 function 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)) { 328 328 return array(); 329 329 } 330 330 331 331 $branch = array(); 332 332 foreach ($elements as $element) { -
wp-simple-html-sitemap/trunk/readme.txt
r3054072 r3067321 6 6 Tested up to: 6.4.3 7 7 Requires PHP: 7.4 8 Stable tag: 2.98 Stable tag: 3.0 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 121 121 == Changelog == 122 122 123 = 3.0 = 124 * Resolve an issue related to exclude parameter 125 123 126 = 2.9 = 124 127 * Updated security standards. -
wp-simple-html-sitemap/trunk/wordpress_simple_html_sitemap.php
r3054072 r3067321 5 5 * Description: Using WordPress Simple HTML Sitemap plugin, you can add HTML Sitemap anywhere on the website using Shortcode. 6 6 * Author: Ashish Ajani 7 * Version: 2.97 * Version: 3.0 8 8 * Author: Ashish Ajani 9 9 * Author URI: http://freelancer-coder.com/
Note: See TracChangeset
for help on using the changeset viewer.