Skip to content

Commit

Permalink
[template] Fixed the title escaping in the account template.
Browse files Browse the repository at this point in the history
  • Loading branch information
fajardoleo committed Aug 6, 2024
1 parent dad8c4f commit bb6cb93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion start.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
* @var string
*/
$this_sdk_version = '2.7.3';
$this_sdk_version = '2.7.4';

#region SDK Selection Logic --------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion templates/account.php
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ class="dashicons dashicons-image-rotate"></i> <?php fs_esc_html_echo_x_inline( '
?>
<tr class="fs-field-<?php echo esc_attr( $p['id'] ) ?><?php if ( $odd ) : ?> alternate<?php endif ?>">
<td>
<nobr><?php echo esc_attr( $p['title'] ) ?><?php echo ( ! empty( $p['title'] ) ) ? ':' : '' ?></nobr>
<nobr><?php echo esc_html( $p['title'] ) ?><?php echo ( ! empty( $p['title'] ) ) ? ':' : '' ?></nobr>
</td>
<td<?php if ( 'plan' === $p['id'] || 'bundle_plan' === $p['id'] ) { echo ' colspan="2"'; }?>>
<?php if ( in_array( $p['id'], array( 'license_key', 'site_secret_key' ) ) ) : ?>
Expand Down

0 comments on commit bb6cb93

Please sign in to comment.