Changeset 2646017
- Timestamp:
- 12/17/2021 08:10:39 PM (4 years ago)
- Location:
- yikes-inc-easy-mailchimp-extender
- Files:
-
- 6 edited
- 1 copied
-
tags/6.8.6 (copied) (copied from yikes-inc-easy-mailchimp-extender/trunk)
-
tags/6.8.6/admin/partials/ajax/add_field_to_form.php (modified) (3 diffs)
-
tags/6.8.6/readme.txt (modified) (2 diffs)
-
tags/6.8.6/yikes-inc-easy-mailchimp-extender.php (modified) (2 diffs)
-
trunk/admin/partials/ajax/add_field_to_form.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/yikes-inc-easy-mailchimp-extender.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
yikes-inc-easy-mailchimp-extender/tags/6.8.6/admin/partials/ajax/add_field_to_form.php
r2402629 r2646017 1 1 <?php 2 2 $form_data = array( 3 'field_name' => $_POST['field_name'],4 'merge_tag' => $_POST['merge_tag'],5 'field_type' => $_POST['field_type'],6 'list_id' => $_POST['list_id'],3 'field_name' => isset( $_POST['field_name'] ) ? sanitize_text_field($_POST['field_name']) : '', 4 'merge_tag' => isset( $_POST['merge_tag'] ) ? sanitize_text_field($_POST['merge_tag']) : '', 5 'field_type' => isset( $_POST['field_type'] ) ? sanitize_text_field($_POST['field_type']) : '', 6 'list_id' => isset( $_POST['list_id'] ) ? sanitize_text_field($_POST['list_id']) : '', 7 7 ); 8 8 … … 34 34 $merge_field_data = $available_merge_variables['merge_fields'][ $index ]; 35 35 ?> 36 <section class="draggable" id="<?php echo $form_data['field_name']; ?>">36 <section class="draggable" id="<?php echo esc_attr( $form_data['field_name'] ); ?>"> 37 37 <!-- top --> 38 38 <a href="#" class="expansion-section-title settings-sidebar"> 39 39 <span class="dashicons dashicons-plus yikes-mc-expansion-toggle" title="<?php _e( 'Expand Field' , 'yikes-inc-easy-mailchimp-extender' ); ?>"></span> 40 <?php echo stripslashes( $form_data['field_name']); ?>41 <span class="field-type-text"><small><?php echo __( 'type' , 'yikes-inc-easy-mailchimp-extender' ) . ' : ' . $form_data['field_type']; ?></small></span>40 <?php echo wp_kses_post( stripslashes( $form_data['field_name'] ) ); ?> 41 <span class="field-type-text"><small><?php echo __( 'type' , 'yikes-inc-easy-mailchimp-extender' ) . ' : ' . esc_html( $form_data['field_type'] ); ?></small></span> 42 42 </a> 43 43 <!-- expansion section --> … … 47 47 <p class="type-container form-field-container"><!-- necessary to prevent skipping on slideToggle(); --> 48 48 <!-- store the label --> 49 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][label]" value="<?php echo htmlspecialchars( $form_data['field_name']); ?>" />50 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][type]" value="<?php echo $form_data['field_type']; ?>" />49 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][label]" value="<?php echo esc_attr( htmlspecialchars( $form_data['field_name'] ) ); ?>" /> 50 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][type]" value="<?php echo esc_attr( $form_data['field_type'] ); ?>" /> 51 51 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][merge]" value="<?php echo $merge_field_data['tag']; ?>" /> 52 52 <input type="hidden" class="field-<?php echo $merge_field_data['tag']; ?>-position position-input" name="field[<?php echo $merge_field_data['tag']; ?>][position]" value="" /> -
yikes-inc-easy-mailchimp-extender/tags/6.8.6/readme.txt
r2592844 r2646017 6 6 Tested up to: 5.8 7 7 Requires PHP: 5.2.13 8 Stable tag: 6.8. 58 Stable tag: 6.8.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 173 173 == Changelog == 174 174 175 = 6.8.6 - December 17, 2021 = 176 * Addressed potential XSS vulnerability 177 175 178 = 6.8.5 - September 2, 2021 = 176 179 * Deprecated filter block_categories is replaced by block_categories_all in WP 5.8 -
yikes-inc-easy-mailchimp-extender/tags/6.8.6/yikes-inc-easy-mailchimp-extender.php
r2592844 r2646017 4 4 * Plugin URI: https://yikesplugins.com/plugin/easy-forms-for-mailchimp/ 5 5 * Description: The ultimate Mailchimp WordPress plugin. Easily build <strong>unlimited forms for your Mailchimp lists</strong>, add them to your site and track subscriber activity. To get started, go to the settings page and enter your <a href="https://yikesplugins.com/support/knowledge-base/finding-your-mailchimp-api-key/" target="_blank">Mailchimp API key</a>. 6 * Version: 6.8. 56 * Version: 6.8.6 7 7 * Author: YIKES, Inc. 8 8 * Author URI: https://www.yikesplugins.com/ … … 43 43 */ 44 44 if ( ! defined( 'YIKES_MC_VERSION' ) ) { 45 define( 'YIKES_MC_VERSION', '6.8. 5' );45 define( 'YIKES_MC_VERSION', '6.8.6' ); 46 46 } 47 47 -
yikes-inc-easy-mailchimp-extender/trunk/admin/partials/ajax/add_field_to_form.php
r2402629 r2646017 1 1 <?php 2 2 $form_data = array( 3 'field_name' => $_POST['field_name'],4 'merge_tag' => $_POST['merge_tag'],5 'field_type' => $_POST['field_type'],6 'list_id' => $_POST['list_id'],3 'field_name' => isset( $_POST['field_name'] ) ? sanitize_text_field($_POST['field_name']) : '', 4 'merge_tag' => isset( $_POST['merge_tag'] ) ? sanitize_text_field($_POST['merge_tag']) : '', 5 'field_type' => isset( $_POST['field_type'] ) ? sanitize_text_field($_POST['field_type']) : '', 6 'list_id' => isset( $_POST['list_id'] ) ? sanitize_text_field($_POST['list_id']) : '', 7 7 ); 8 8 … … 34 34 $merge_field_data = $available_merge_variables['merge_fields'][ $index ]; 35 35 ?> 36 <section class="draggable" id="<?php echo $form_data['field_name']; ?>">36 <section class="draggable" id="<?php echo esc_attr( $form_data['field_name'] ); ?>"> 37 37 <!-- top --> 38 38 <a href="#" class="expansion-section-title settings-sidebar"> 39 39 <span class="dashicons dashicons-plus yikes-mc-expansion-toggle" title="<?php _e( 'Expand Field' , 'yikes-inc-easy-mailchimp-extender' ); ?>"></span> 40 <?php echo stripslashes( $form_data['field_name']); ?>41 <span class="field-type-text"><small><?php echo __( 'type' , 'yikes-inc-easy-mailchimp-extender' ) . ' : ' . $form_data['field_type']; ?></small></span>40 <?php echo wp_kses_post( stripslashes( $form_data['field_name'] ) ); ?> 41 <span class="field-type-text"><small><?php echo __( 'type' , 'yikes-inc-easy-mailchimp-extender' ) . ' : ' . esc_html( $form_data['field_type'] ); ?></small></span> 42 42 </a> 43 43 <!-- expansion section --> … … 47 47 <p class="type-container form-field-container"><!-- necessary to prevent skipping on slideToggle(); --> 48 48 <!-- store the label --> 49 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][label]" value="<?php echo htmlspecialchars( $form_data['field_name']); ?>" />50 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][type]" value="<?php echo $form_data['field_type']; ?>" />49 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][label]" value="<?php echo esc_attr( htmlspecialchars( $form_data['field_name'] ) ); ?>" /> 50 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][type]" value="<?php echo esc_attr( $form_data['field_type'] ); ?>" /> 51 51 <input type="hidden" name="field[<?php echo $merge_field_data['tag']; ?>][merge]" value="<?php echo $merge_field_data['tag']; ?>" /> 52 52 <input type="hidden" class="field-<?php echo $merge_field_data['tag']; ?>-position position-input" name="field[<?php echo $merge_field_data['tag']; ?>][position]" value="" /> -
yikes-inc-easy-mailchimp-extender/trunk/readme.txt
r2592844 r2646017 6 6 Tested up to: 5.8 7 7 Requires PHP: 5.2.13 8 Stable tag: 6.8. 58 Stable tag: 6.8.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 173 173 == Changelog == 174 174 175 = 6.8.6 - December 17, 2021 = 176 * Addressed potential XSS vulnerability 177 175 178 = 6.8.5 - September 2, 2021 = 176 179 * Deprecated filter block_categories is replaced by block_categories_all in WP 5.8 -
yikes-inc-easy-mailchimp-extender/trunk/yikes-inc-easy-mailchimp-extender.php
r2592844 r2646017 4 4 * Plugin URI: https://yikesplugins.com/plugin/easy-forms-for-mailchimp/ 5 5 * Description: The ultimate Mailchimp WordPress plugin. Easily build <strong>unlimited forms for your Mailchimp lists</strong>, add them to your site and track subscriber activity. To get started, go to the settings page and enter your <a href="https://yikesplugins.com/support/knowledge-base/finding-your-mailchimp-api-key/" target="_blank">Mailchimp API key</a>. 6 * Version: 6.8. 56 * Version: 6.8.6 7 7 * Author: YIKES, Inc. 8 8 * Author URI: https://www.yikesplugins.com/ … … 43 43 */ 44 44 if ( ! defined( 'YIKES_MC_VERSION' ) ) { 45 define( 'YIKES_MC_VERSION', '6.8. 5' );45 define( 'YIKES_MC_VERSION', '6.8.6' ); 46 46 } 47 47
Note: See TracChangeset
for help on using the changeset viewer.