PluginProbe
WPIDE – File Manager & Code Editor / 3.5.9
WPIDE – File Manager & Code Editor v3.5.9
3.5.9 3.5.8 3.5.7 2.0.14 2.0.15 2.0.16 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1 2.2 2.3 2.3.1 2.3.2 2.4.0 2.5 2.6 3.0 3.1 3.2 3.3 All 55 releases
← All changes | freemius/templates/partials/network-activation.php +5 -5 3.2 → 3.5.9 View file →
@@ -57,23 +57,23 @@
57 57 </table>
58 58 <div class="fs-sites-list-container">
59 59 <table cellspacing="0">
60 60 <tbody>
61 - <?php $site_props = array('uid', 'url', 'title', 'charset', 'language') ?>
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>