Plugin Directory

Changeset 3273955


Ignore:
Timestamp:
04/15/2025 09:56:37 PM (11 months ago)
Author:
tinuzz
Message:

Release v5.1.1

Location:
trackserver/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trackserver/trunk/class-trackserver-shortcode.php

    r3273936 r3273955  
    290290
    291291        $this->trackserver->mapdata[]    = $mapdata;
    292         $out                             = '<div id="' . $div_id . '" ' . $class_str . ' style="width: ' . $atts['width'] . '; height: ' . $atts['height'] . '; max-width: 100%"></div>';
     292        $out                             = '<div id="' . $div_id . '" ' . $class_str . ' style="width: ' . esc_attr( $this->shortcode_data['config']['width'] ) . '; height: ' . esc_attr( $this->shortcode_data['config']['height'] ) . '; max-width: 100%"></div>';
    293293        $this->trackserver->need_scripts = true;
    294294
  • trackserver/trunk/readme.txt

    r3273940 r3273955  
    55Requires at least: 4.7
    66Tested up to: 6.8
    7 Stable tag: 5.1
     7Stable tag: 5.1.1
    88Requires PHP: 7.3
    99License: GPLv2 or later
     
    267267
    268268== Changelog ==
     269
     270= v5.1.1 =
     271Release date: 15 April 2025
     272
     273Fixed:
     274* Fix for CVE-2025-30961 now actually merged.
    269275
    270276= v5.1.0 =
  • trackserver/trunk/trackserver.php

    r3273936 r3273955  
    66Plugin URI: https://www.grendelman.net/wp/trackserver-wordpress-plugin/
    77Description: GPS Track Server for TrackMe, OruxMaps and others
    8 Version: 5.1.0
     8Version: 5.1.1
    99Author: Martijn Grendelman
    1010Author URI: http://www.grendelman.net/
     
    1414
    1515=== RELEASE HISTORY ===
     162025-04-15 - v5.1.1 - security release
    16172025-04-15 - v5.1.0 - security release
    17182025-01-09 - v5.0.3 - fix XSS in shortcode, reported by yudha @ Wordfence
     
    5657define( 'TRACKSERVER_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    5758define( 'TRACKSERVER_JSLIB', TRACKSERVER_PLUGIN_URL . 'lib/' );
    58 define( 'TRACKSERVER_VERSION', '4.3-20190906' );
     59define( 'TRACKSERVER_VERSION', '5.1-20250415' );
    5960
    6061require_once( TRACKSERVER_PLUGIN_DIR . 'class-trackserver.php' );
Note: See TracChangeset for help on using the changeset viewer.