Changeset 3148752
- Timestamp:
- 09/09/2024 02:14:50 PM (19 months ago)
- Location:
- nova-blocks/trunk
- Files:
-
- 4 edited
-
languages/nova-blocks.pot (modified) (2 diffs)
-
nova-blocks.php (modified) (1 diff)
-
packages/core/src/blocks/core/separator/init.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nova-blocks/trunk/languages/nova-blocks.pot
r3080841 r3148752 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Nova Blocks 2.1. 7\n"5 "Project-Id-Version: Nova Blocks 2.1.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/nova-blocks\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-0 5-03T09:50:48+00:00\n"12 "POT-Creation-Date: 2024-09-09T13:11:17+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" -
nova-blocks/trunk/nova-blocks.php
r3080841 r3148752 4 4 * Plugin URI: https://github.com/pixelgrade/nova-blocks/ 5 5 * Description: Nova Blocks is a collection of <strong>distinctive Gutenberg blocks</strong>, committed to making your site shine like a newborn star. It is taking a design-driven approach to help you made the right decisions and showcase your content in the best shape. 6 * Version: 2.1. 76 * Version: 2.1.8 7 7 * Author: Pixelgrade 8 8 * Author URI: https://www.pixelgrade.com -
nova-blocks/trunk/packages/core/src/blocks/core/separator/init.php
r2719178 r3148752 36 36 $classes = [ 37 37 'wp-block-separator', 38 'align' . $attributes['align']38 'align' . sanitize_html_class( $attributes['align'] ) 39 39 ]; 40 40 … … 50 50 51 51 <div <?php echo $data_attributes; ?> 52 class="<?php echo join( ' ', $classes )?>"52 class="<?php echo esc_attr( join( ' ', $classes ) ); ?>" 53 53 style="<?php echo esc_attr( $style ); ?>"> 54 54 <?php -
nova-blocks/trunk/readme.txt
r3080841 r3148752 3 3 Tags: blocks, editor, gutenberg, gutenberg blocks, page builder, block enabled, page building, full site editing, site editor, posts collection 4 4 Requires at least: 5.9 5 Tested up to: 6. 5.36 Stable tag: 2.1. 75 Tested up to: 6.6.1 6 Stable tag: 2.1.8 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 94 94 95 95 == Changelog == 96 97 = 2.1.8 = 98 * Fixed an authenticated (Contributor+) stored cross-site scripting (XSS) vulnerability via the 'align' attribute of the 'wp:separator' Gutenberg block. 99 * Improved sanitization and escaping of the 'align' attribute to prevent potential XSS attacks. 96 100 97 101 = 2.1.7 =
Note: See TracChangeset
for help on using the changeset viewer.