Changeset 3273955
- Timestamp:
- 04/15/2025 09:56:37 PM (11 months ago)
- Location:
- trackserver/trunk
- Files:
-
- 3 edited
-
class-trackserver-shortcode.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
trackserver.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trackserver/trunk/class-trackserver-shortcode.php
r3273936 r3273955 290 290 291 291 $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>'; 293 293 $this->trackserver->need_scripts = true; 294 294 -
trackserver/trunk/readme.txt
r3273940 r3273955 5 5 Requires at least: 4.7 6 6 Tested up to: 6.8 7 Stable tag: 5.1 7 Stable tag: 5.1.1 8 8 Requires PHP: 7.3 9 9 License: GPLv2 or later … … 267 267 268 268 == Changelog == 269 270 = v5.1.1 = 271 Release date: 15 April 2025 272 273 Fixed: 274 * Fix for CVE-2025-30961 now actually merged. 269 275 270 276 = v5.1.0 = -
trackserver/trunk/trackserver.php
r3273936 r3273955 6 6 Plugin URI: https://www.grendelman.net/wp/trackserver-wordpress-plugin/ 7 7 Description: GPS Track Server for TrackMe, OruxMaps and others 8 Version: 5.1. 08 Version: 5.1.1 9 9 Author: Martijn Grendelman 10 10 Author URI: http://www.grendelman.net/ … … 14 14 15 15 === RELEASE HISTORY === 16 2025-04-15 - v5.1.1 - security release 16 17 2025-04-15 - v5.1.0 - security release 17 18 2025-01-09 - v5.0.3 - fix XSS in shortcode, reported by yudha @ Wordfence … … 56 57 define( 'TRACKSERVER_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 57 58 define( 'TRACKSERVER_JSLIB', TRACKSERVER_PLUGIN_URL . 'lib/' ); 58 define( 'TRACKSERVER_VERSION', ' 4.3-20190906' );59 define( 'TRACKSERVER_VERSION', '5.1-20250415' ); 59 60 60 61 require_once( TRACKSERVER_PLUGIN_DIR . 'class-trackserver.php' );
Note: See TracChangeset
for help on using the changeset viewer.