Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver

== Changelog ==

= 1.2.42 - TBD =
* escape disable_greedy argument value in profile and profile header shortcodes - FIXED

= 1.2.41 - 2025-08-21 =
* Author actions not visible in listings tab when default tab is empty - FIXED
* Register form submit button is not translatable - FIXED
Expand Down
2 changes: 1 addition & 1 deletion templates/bootstrap/profile-header.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
?>
</li>
</ul>
<?php echo do_shortcode( "[uwp_user_post_counts disable_greedy=".$args['disable_greedy']."]" ); ?>
<?php echo do_shortcode( "[uwp_user_post_counts disable_greedy=".esc_attr($args['disable_greedy'])."]" ); ?>
</div>
<div class="col-12 <?php if ( ! $uwp_in_user_loop ) { ?>col-xl-4 text-xl-right <?php } ?> text-center pt-2">
<?php
Expand Down
4 changes: 2 additions & 2 deletions templates/bootstrap/profile.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
echo do_shortcode("[uwp_profile_header disable_greedy=".$args['disable_greedy']."]");
echo do_shortcode("[uwp_profile_tabs disable_greedy=".$args['disable_greedy']."]");
echo do_shortcode("[uwp_profile_header disable_greedy=".esc_attr($args['disable_greedy'])."]");
echo do_shortcode("[uwp_profile_tabs disable_greedy=".esc_attr($args['disable_greedy'])."]");
?>