PluginProbe
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs / 2.7.3
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs v2.7.3
5.0.1 4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 All 39 releases
← All changes | freemius/templates/partials/network-activation.php +4 -4 2.5.3 → 2.7.3 View file →
@@ -60,20 +60,20 @@
60 60 <tbody>
61 61 <?php $site_props = array('uid', 'url', 'title', 'language') ?>
62 62 <?php foreach ( $sites as $site ) : ?>
63 63 <tr<?php if ( ! empty( $site['license_id'] ) ) {
64 - echo ' data-license-id="' . $site['license_id'] . '"';
64 + echo ' data-license-id="' . esc_attr( $site['license_id'] ) . '"';
65 65 } ?>>
66 66 <?php if ( $require_license_key ) : ?>
67 67 <td><input type="checkbox" value="true" /></td>
68 68 <?php endif ?>
69 - <td class="blog-id"><span><?php echo $site['blog_id'] ?></span>.</td>
69 + <td class="blog-id"><span><?php echo esc_html( $site['blog_id'] ) ?></span>.</td>
70 70 <td width="600"><span><?php
71 71 $url = str_replace( 'http://', '', str_replace( 'https://', '', $site['url'] ) );
72 - echo $url;
72 + echo esc_html( $url );
73 73 ?></span>
74 74 <?php foreach ($site_props as $prop) : ?>
75 - <input class="<?php echo $prop ?>" type="hidden" value="<?php echo esc_attr($site[$prop]) ?>" />
75 + <input class="<?php echo esc_attr( $prop ) ?>" type="hidden" value="<?php echo esc_attr($site[$prop]) ?>" />
76 76 <?php endforeach ?>
77 77 </td>
78 78 <?php if ( ! $require_license_key ) : ?>
79 79 <td><a class="action action-allow selected" data-action-type="allow" href="#"><?php fs_esc_html_echo_inline( 'allow', 'allow', $slug ) ?></a></td>