Skip to content

Commit 90eef70

Browse files
committed
update: Security Update(Prevent Cross-Site Scripting)
1 parent 1038b66 commit 90eef70

File tree

7 files changed

+21
-15
lines changed

7 files changed

+21
-15
lines changed

build/qubely/assets/js/qubely.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/qubely/core/blocks/postgrid.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1414,9 +1414,9 @@ function qubely_excerpt_max_charlength($limit)
14141414
} else {
14151415
$col = "";
14161416
}
1417-
$class = 'wp-block-qubely-postgrid qubely-block-' . $uniqueId;
1417+
$class = 'wp-block-qubely-postgrid qubely-block-' . esc_attr($uniqueId);
14181418
if (isset($att['align'])) {
1419-
$class .= ' align' . $att['align'];
1419+
$class .= ' align' . esc_attr($att['align']);
14201420
}
14211421
if (isset($att['className'])) {
14221422
$class .= esc_attr($att['className']);

build/qubely/qubely.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* Plugin Name: Qubely - Advanced Gutenberg Blocks
44
* Plugin URI: https://www.themeum.com/
55
* Description: The one and only Gutenberg block plugin you will ever need.
6-
* Version: 1.8.12
6+
* Version: 1.8.13
77
* Author: Themeum
88
* Author URI: https://www.themeum.com/
99
* Text Domain: qubely
1010
* Requires at least: 5.3
11-
* Tested up to: 6.6.2
11+
* Tested up to: 6.7
1212
* License: GPL-2.0+
1313
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
1414
*/
@@ -24,7 +24,7 @@ function qubely_language_load()
2424
}
2525

2626
// Define Version
27-
define('QUBELY_VERSION', '1.8.12');
27+
define('QUBELY_VERSION', '1.8.13');
2828

2929
// Define License
3030
define('QUBELY_LICENSE', 'free');

build/qubely/readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: themeum
33
Donate link: https://www.themeum.com
44
Tags: blocks, gutenberg, gutenberg blocks, editor, block, page builder
55
Requires at least: 5.3
6-
Tested up to: 6.6.2
7-
Stable tag: 1.8.12
6+
Tested up to: 6.7
7+
Stable tag: 1.8.13
88
Requires PHP: 7.0
99
License: GPL-2.0+
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -230,6 +230,9 @@ You can report bugs on the [support forum here](https://wordpress.org/support/pl
230230

231231
== Changelog ==
232232

233+
= 1.8.13 =
234+
Update: Security Update(Prevent Cross-Site Scripting)
235+
233236
= 1.8.12 =
234237
Update: Added WordPress 6.6 Compatibility
235238

core/blocks/postgrid.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1414,9 +1414,9 @@ function qubely_excerpt_max_charlength($limit)
14141414
} else {
14151415
$col = "";
14161416
}
1417-
$class = 'wp-block-qubely-postgrid qubely-block-' . $uniqueId;
1417+
$class = 'wp-block-qubely-postgrid qubely-block-' . esc_attr($uniqueId);
14181418
if (isset($att['align'])) {
1419-
$class .= ' align' . $att['align'];
1419+
$class .= ' align' . esc_attr($att['align']);
14201420
}
14211421
if (isset($att['className'])) {
14221422
$class .= esc_attr($att['className']);

qubely.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* Plugin Name: Qubely - Advanced Gutenberg Blocks
44
* Plugin URI: https://www.themeum.com/
55
* Description: The one and only Gutenberg block plugin you will ever need.
6-
* Version: 1.8.12
6+
* Version: 1.8.13
77
* Author: Themeum
88
* Author URI: https://www.themeum.com/
99
* Text Domain: qubely
1010
* Requires at least: 5.3
11-
* Tested up to: 6.6.2
11+
* Tested up to: 6.7
1212
* License: GPL-2.0+
1313
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
1414
*/
@@ -24,7 +24,7 @@ function qubely_language_load()
2424
}
2525

2626
// Define Version
27-
define('QUBELY_VERSION', '1.8.12');
27+
define('QUBELY_VERSION', '1.8.13');
2828

2929
// Define License
3030
define('QUBELY_LICENSE', 'free');

readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: themeum
33
Donate link: https://www.themeum.com
44
Tags: blocks, gutenberg, gutenberg blocks, editor, block, page builder
55
Requires at least: 5.3
6-
Tested up to: 6.6.2
7-
Stable tag: 1.8.12
6+
Tested up to: 6.7
7+
Stable tag: 1.8.13
88
Requires PHP: 7.0
99
License: GPL-2.0+
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -230,6 +230,9 @@ You can report bugs on the [support forum here](https://wordpress.org/support/pl
230230

231231
== Changelog ==
232232

233+
= 1.8.13 =
234+
Update: Security Update(Prevent Cross-Site Scripting)
235+
233236
= 1.8.12 =
234237
Update: Added WordPress 6.6 Compatibility
235238

0 commit comments

Comments
 (0)