Skip to content

Commit

Permalink
update: Security Update(Prevent Cross-Site Scripting)
Browse files Browse the repository at this point in the history
  • Loading branch information
sifat009 committed Feb 5, 2025
1 parent 1038b66 commit 90eef70
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build/qubely/assets/js/qubely.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/qubely/core/blocks/postgrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -1414,9 +1414,9 @@ function qubely_excerpt_max_charlength($limit)
} else {
$col = "";
}
$class = 'wp-block-qubely-postgrid qubely-block-' . $uniqueId;
$class = 'wp-block-qubely-postgrid qubely-block-' . esc_attr($uniqueId);
if (isset($att['align'])) {
$class .= ' align' . $att['align'];
$class .= ' align' . esc_attr($att['align']);
}
if (isset($att['className'])) {
$class .= esc_attr($att['className']);
Expand Down
6 changes: 3 additions & 3 deletions build/qubely/qubely.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
* Plugin Name: Qubely - Advanced Gutenberg Blocks
* Plugin URI: https://www.themeum.com/
* Description: The one and only Gutenberg block plugin you will ever need.
* Version: 1.8.12
* Version: 1.8.13
* Author: Themeum
* Author URI: https://www.themeum.com/
* Text Domain: qubely
* Requires at least: 5.3
* Tested up to: 6.6.2
* Tested up to: 6.7
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
Expand All @@ -24,7 +24,7 @@ function qubely_language_load()
}

// Define Version
define('QUBELY_VERSION', '1.8.12');
define('QUBELY_VERSION', '1.8.13');

// Define License
define('QUBELY_LICENSE', 'free');
Expand Down
7 changes: 5 additions & 2 deletions build/qubely/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: themeum
Donate link: https://www.themeum.com
Tags: blocks, gutenberg, gutenberg blocks, editor, block, page builder
Requires at least: 5.3
Tested up to: 6.6.2
Stable tag: 1.8.12
Tested up to: 6.7
Stable tag: 1.8.13
Requires PHP: 7.0
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Expand Down Expand Up @@ -230,6 +230,9 @@ You can report bugs on the [support forum here](https://wordpress.org/support/pl

== Changelog ==

= 1.8.13 =
Update: Security Update(Prevent Cross-Site Scripting)

= 1.8.12 =
Update: Added WordPress 6.6 Compatibility

Expand Down
4 changes: 2 additions & 2 deletions core/blocks/postgrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -1414,9 +1414,9 @@ function qubely_excerpt_max_charlength($limit)
} else {
$col = "";
}
$class = 'wp-block-qubely-postgrid qubely-block-' . $uniqueId;
$class = 'wp-block-qubely-postgrid qubely-block-' . esc_attr($uniqueId);
if (isset($att['align'])) {
$class .= ' align' . $att['align'];
$class .= ' align' . esc_attr($att['align']);
}
if (isset($att['className'])) {
$class .= esc_attr($att['className']);
Expand Down
6 changes: 3 additions & 3 deletions qubely.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
* Plugin Name: Qubely - Advanced Gutenberg Blocks
* Plugin URI: https://www.themeum.com/
* Description: The one and only Gutenberg block plugin you will ever need.
* Version: 1.8.12
* Version: 1.8.13
* Author: Themeum
* Author URI: https://www.themeum.com/
* Text Domain: qubely
* Requires at least: 5.3
* Tested up to: 6.6.2
* Tested up to: 6.7
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
Expand All @@ -24,7 +24,7 @@ function qubely_language_load()
}

// Define Version
define('QUBELY_VERSION', '1.8.12');
define('QUBELY_VERSION', '1.8.13');

// Define License
define('QUBELY_LICENSE', 'free');
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: themeum
Donate link: https://www.themeum.com
Tags: blocks, gutenberg, gutenberg blocks, editor, block, page builder
Requires at least: 5.3
Tested up to: 6.6.2
Stable tag: 1.8.12
Tested up to: 6.7
Stable tag: 1.8.13
Requires PHP: 7.0
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Expand Down Expand Up @@ -230,6 +230,9 @@ You can report bugs on the [support forum here](https://wordpress.org/support/pl

== Changelog ==

= 1.8.13 =
Update: Security Update(Prevent Cross-Site Scripting)

= 1.8.12 =
Update: Added WordPress 6.6 Compatibility

Expand Down

0 comments on commit 90eef70

Please sign in to comment.