Plugin Directory

Changeset 3207248


Ignore:
Timestamp:
12/12/2024 10:55:11 PM (15 months ago)
Author:
gsarig
Message:

Update to version 2.8.4 from GitHub

Location:
ootb-openstreetmap
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ootb-openstreetmap/tags/2.8.4/includes/classes/Query.php

    r3190811 r3207248  
    281281        ];
    282282
     283        $escaped_attrs = array_map( 'esc_attr', $attrs );
     284
    283285        $content = sprintf(
    284286            '<div class="ootb-openstreetmap--map" %1$s style="height: %2$s;"></div>',
    285             self::default_attrs( $attrs ),
    286             $attrs[ 'height' ]
     287            self::default_attrs( $escaped_attrs ),
     288            $escaped_attrs[ 'height' ]
    287289        );
    288290
  • ootb-openstreetmap/tags/2.8.4/ootb-openstreetmap.php

    r3190811 r3207248  
    66 * Requires at least: 6.5
    77 * Requires PHP:      7.4
    8  * Version:           2.8.3
     8 * Version:           2.8.4
    99 * Author:            Giorgos Sarigiannidis
    1010 * Author URI:        https://www.gsarigiannidis.gr
     
    2222
    2323const OOTB_BLOCK_NAME     = 'ootb/openstreetmap';
    24 const OOTB_VERSION        = '2.8.3';
     24const OOTB_VERSION        = '2.8.4';
    2525const OOTB_SCRIPT_VERSION = [
    2626    'leaflet'                  => '1.9.4',
  • ootb-openstreetmap/tags/2.8.4/readme.txt

    r3190811 r3207248  
    66Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 2.8.3
     8Stable tag: 2.8.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140
    141141== Changelog ==
     142= 2.8.4 =
     143* Security update. Fixes a vulnerability which allows authenticated attackers with contributor permissions or above to insert JavaScript that triggers when accessing the web-page by mouse.
     144
    142145= 2.8.3 =
    143146* Bumps support to WordPress 6.7.
  • ootb-openstreetmap/trunk/includes/classes/Query.php

    r3190811 r3207248  
    281281        ];
    282282
     283        $escaped_attrs = array_map( 'esc_attr', $attrs );
     284
    283285        $content = sprintf(
    284286            '<div class="ootb-openstreetmap--map" %1$s style="height: %2$s;"></div>',
    285             self::default_attrs( $attrs ),
    286             $attrs[ 'height' ]
     287            self::default_attrs( $escaped_attrs ),
     288            $escaped_attrs[ 'height' ]
    287289        );
    288290
  • ootb-openstreetmap/trunk/ootb-openstreetmap.php

    r3190811 r3207248  
    66 * Requires at least: 6.5
    77 * Requires PHP:      7.4
    8  * Version:           2.8.3
     8 * Version:           2.8.4
    99 * Author:            Giorgos Sarigiannidis
    1010 * Author URI:        https://www.gsarigiannidis.gr
     
    2222
    2323const OOTB_BLOCK_NAME     = 'ootb/openstreetmap';
    24 const OOTB_VERSION        = '2.8.3';
     24const OOTB_VERSION        = '2.8.4';
    2525const OOTB_SCRIPT_VERSION = [
    2626    'leaflet'                  => '1.9.4',
  • ootb-openstreetmap/trunk/readme.txt

    r3190811 r3207248  
    66Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 2.8.3
     8Stable tag: 2.8.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140
    141141== Changelog ==
     142= 2.8.4 =
     143* Security update. Fixes a vulnerability which allows authenticated attackers with contributor permissions or above to insert JavaScript that triggers when accessing the web-page by mouse.
     144
    142145= 2.8.3 =
    143146* Bumps support to WordPress 6.7.
Note: See TracChangeset for help on using the changeset viewer.