Plugin Directory

Changeset 3447204


Ignore:
Timestamp:
01/26/2026 03:59:57 PM (2 months ago)
Author:
milonfci
Message:

New version released 1.9.6

Location:
gmap-embed
Files:
813 added
3 edited

Legend:

Unmodified
Added
Removed
  • gmap-embed/trunk/includes/Classes/srmgmap_widget.php

    r3324623 r3447204  
    4848        extract($instance);
    4949
    50         echo wp_kses_post(wp_unslash($before_widget));
     50        echo wp_unslash($before_widget);
    5151        if (!empty($title)) {
    52             echo wp_kses_post(wp_unslash($before_title . esc_html($title) . $after_title));
     52            echo wp_unslash($before_title . esc_html($title) . $after_title);
    5353        }
    5454        // Only allow [gmap-embed id="..."] shortcodes for security
    5555        if (preg_match('/^\[gmap-embed id=("|"|\')\d+("|"|\')\]$/', $shortcode)) {
    56             // Escape output of do_shortcode for XSS protection
    57             echo wp_kses_post(do_shortcode($shortcode));
     56            echo do_shortcode($shortcode);
    5857        }
    59         echo wp_kses_post(wp_unslash($after_widget));
     58        echo wp_unslash($after_widget);
    6059    }
    6160
  • gmap-embed/trunk/readme.txt

    r3445625 r3447204  
    55Requires at least: 2.9
    66Tested up to: 6.9
    7 Version: 1.9.5
    8 Stable tag: 1.9.5
     7Version: 1.9.6
     8Stable tag: 1.9.6
    99Requires PHP: 5.3
    1010Text Domain: gmap-embed
     
    157157== Changelog ==
    158158
     159= 1.9.6 =
     160* **Quick Fix** Classic widget shortcode preview issue fixed.
     161
    159162= 1.9.5 =
    160163* **Feature:** Added "Advanced Store Locator".
  • gmap-embed/trunk/srm_gmap_embed.php

    r3444185 r3447204  
    88  Domain Path: /languages
    99  Author URI: https://www.wpgooglemap.com?utm_source=gmap-embed&utm_medium=wordpress-plugin&utm_campaign=branding&utm_content=author-uri
    10   Version: 1.9.5
     10  Version: 1.9.6
    1111  License: GPLv2 or later
    1212  License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1919}
    2020
    21 define('WGM_PLUGIN_VERSION', '1.9.5');
    22 define('WGM_PLUGIN_DEV_VERSION', '20260121');
     21define('WGM_PLUGIN_VERSION', '1.9.6');
     22define('WGM_PLUGIN_DEV_VERSION', '20260126');
    2323define('WGM_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
    2424define('WGM_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
Note: See TracChangeset for help on using the changeset viewer.