Plugin Directory

Changeset 3254762


Ignore:
Timestamp:
03/12/2025 12:34:31 PM (13 months ago)
Author:
davidvongries
Message:

updated to 3.8.7

Location:
ultimate-dashboard
Files:
482 added
3 edited

Legend:

Unmodified
Added
Removed
  • ultimate-dashboard/trunk/modules/widget/inc/save-post.php

    r3252780 r3254762  
    7373    // Text widget.
    7474    if ( isset( $_POST['udb_content'] ) ) {
    75         update_post_meta( $post_id, 'udb_content', sanitize_textarea_field( wp_unslash( $_POST['udb_content'] ) ) );
     75        update_post_meta( $post_id, 'udb_content', wp_kses_post( wp_unslash( $_POST['udb_content'] ) ) );
    7676    }
    7777
  • ultimate-dashboard/trunk/readme.txt

    r3252780 r3254762  
    55Tested up to: 6.7
    66Requires PHP: 5.6
    7 Stable tag: 3.8.6
     7Stable tag: 3.8.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    104104
    105105== Changelog ==
     106= 3.8.7 | March 12, 2025 =
     107* Fixed: Issue where links weren't saved in text widgets
    106108= 3.8.6 | March 3, 2025 =
    107 * Fixed XSS vulnerabilities in the edit widget and edit admin page screens
    108 * Implemented additional security enhancements to prevent potential issues
     109* Fixed: XSS vulnerabilities in the edit widget and edit admin page screens
     110* Tweak: Additional security enhancements
    109111= 3.8.5 | November 22, 2024 =
    110112* Fixed: BFCM notice wasn't dismissible
  • ultimate-dashboard/trunk/ultimate-dashboard.php

    r3252780 r3254762  
    44 * Plugin URI: https://ultimatedashboard.io/
    55 * Description: Create a custom Dashboard and give the WordPress admin area a more meaningful use.
    6  * Version: 3.8.6
     6 * Version: 3.8.7
    77 * Author: David Vongries
    88 * Author URI: https://davidvongries.com/
     
    1717define( 'ULTIMATE_DASHBOARD_PLUGIN_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
    1818define( 'ULTIMATE_DASHBOARD_PLUGIN_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
    19 define( 'ULTIMATE_DASHBOARD_PLUGIN_VERSION', '3.8.6' );
     19define( 'ULTIMATE_DASHBOARD_PLUGIN_VERSION', '3.8.7' );
    2020define( 'ULTIMATE_DASHBOARD_PLUGIN_FILE', plugin_basename( __FILE__ ) );
    2121
Note: See TracChangeset for help on using the changeset viewer.