Changeset 2947262
- Timestamp:
- 08/03/2023 02:16:00 PM (2 years ago)
- Location:
- happyforms
- Files:
-
- 10 edited
- 1 copied
-
tags/1.25.8 (copied) (copied from happyforms/trunk)
-
tags/1.25.8/core/classes/class-form-shuffle.php (modified) (2 diffs)
-
tags/1.25.8/core/helpers/helper-form-templates.php (modified) (1 diff)
-
tags/1.25.8/happyforms.php (modified) (2 diffs)
-
tags/1.25.8/languages/happyforms.pot (modified) (2 diffs)
-
tags/1.25.8/readme.txt (modified) (3 diffs)
-
trunk/core/classes/class-form-shuffle.php (modified) (2 diffs)
-
trunk/core/helpers/helper-form-templates.php (modified) (1 diff)
-
trunk/happyforms.php (modified) (2 diffs)
-
trunk/languages/happyforms.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
happyforms/tags/1.25.8/core/classes/class-form-shuffle.php
r2885547 r2947262 41 41 public function get_random_seed() { 42 42 if ( '' === $this->random_seed ) { 43 $ this->random_seed = (43 $seed = ( 44 44 isset( $_REQUEST['happyforms_random_seed'] ) ? 45 45 $_REQUEST['happyforms_random_seed'] : … … 47 47 ); 48 48 49 $this->random_seed = wp_kses_post( $seed ); 49 50 } 50 51 -
happyforms/tags/1.25.8/core/helpers/helper-form-templates.php
r2931466 r2947262 77 77 78 78 if ( $controller->has_honeypot_protection( $form ) ) : ?> 79 <input type="text" name="<?php echo $form['ID']; ?>-<?php echo $name; ?>" style="position:absolute;left:-5000px;" tabindex="-1" autocomplete="off" > <span class="screen-reader-text"><?php _e( 'Leave this field blank', 'happyforms' ); ?></span>79 <input type="text" name="<?php echo $form['ID']; ?>-<?php echo $name; ?>" style="position:absolute;left:-5000px;" tabindex="-1" autocomplete="off" aria-hidden="true"> <span class="screen-reader-text"><?php _e( 'Leave this field blank', 'happyforms' ); ?></span> 80 80 <?php endif; 81 81 } -
happyforms/tags/1.25.8/happyforms.php
r2931477 r2947262 6 6 * Description: Form builder to get in touch with visitors, grow your email list and collect payments. 7 7 * Author: Happyforms 8 * Version: 1.25. 78 * Version: 1.25.8 9 9 * Author URI: https://happyforms.io 10 10 * Upgrade URI: https://happyforms.io/upgrade … … 23 23 * The current version of the plugin. 24 24 */ 25 define( 'HAPPYFORMS_VERSION', '1.25. 7' );25 define( 'HAPPYFORMS_VERSION', '1.25.8' ); 26 26 27 27 if ( ! function_exists( 'happyforms_get_version' ) ): -
happyforms/tags/1.25.8/languages/happyforms.pot
r2931477 r2947262 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Happyforms (free) 1.25. 7\n"5 "Project-Id-Version: Happyforms (free) 1.25.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/happyforms/\n" 7 7 "Last-Translator: The Theme Foundry\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-0 6-27T14:44:58+00:00\n"12 "POT-Creation-Date: 2023-08-03T14:12:43+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.5.0\n" -
happyforms/tags/1.25.8/readme.txt
r2931477 r2947262 6 6 Tested up to: 6.2 7 7 Requires PHP: 7.0 8 Stable tag: 1.25. 78 Stable tag: 1.25.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 160 160 161 161 == Changelog == 162 163 = August 3, 2023 = 164 165 Version 1.25.8 changelog: 166 167 * Added: Accessibility attribute to non-interactive fields. 168 * Fixed: XSS vulnerability issue on setting fields. 162 169 163 170 = June 1, 2023 = … … 1564 1571 == Upgrade Notice == 1565 1572 1573 = 1.25.8 = 1574 1575 * Fix XSS vulnerabiliy on setting fields, added accessibilyt improvements to non-interactive fields. 1576 1566 1577 = 1.25.7 = 1567 1578 * Fixed packaging error. -
happyforms/trunk/core/classes/class-form-shuffle.php
r2885547 r2947262 41 41 public function get_random_seed() { 42 42 if ( '' === $this->random_seed ) { 43 $ this->random_seed = (43 $seed = ( 44 44 isset( $_REQUEST['happyforms_random_seed'] ) ? 45 45 $_REQUEST['happyforms_random_seed'] : … … 47 47 ); 48 48 49 $this->random_seed = wp_kses_post( $seed ); 49 50 } 50 51 -
happyforms/trunk/core/helpers/helper-form-templates.php
r2931466 r2947262 77 77 78 78 if ( $controller->has_honeypot_protection( $form ) ) : ?> 79 <input type="text" name="<?php echo $form['ID']; ?>-<?php echo $name; ?>" style="position:absolute;left:-5000px;" tabindex="-1" autocomplete="off" > <span class="screen-reader-text"><?php _e( 'Leave this field blank', 'happyforms' ); ?></span>79 <input type="text" name="<?php echo $form['ID']; ?>-<?php echo $name; ?>" style="position:absolute;left:-5000px;" tabindex="-1" autocomplete="off" aria-hidden="true"> <span class="screen-reader-text"><?php _e( 'Leave this field blank', 'happyforms' ); ?></span> 80 80 <?php endif; 81 81 } -
happyforms/trunk/happyforms.php
r2931477 r2947262 6 6 * Description: Form builder to get in touch with visitors, grow your email list and collect payments. 7 7 * Author: Happyforms 8 * Version: 1.25. 78 * Version: 1.25.8 9 9 * Author URI: https://happyforms.io 10 10 * Upgrade URI: https://happyforms.io/upgrade … … 23 23 * The current version of the plugin. 24 24 */ 25 define( 'HAPPYFORMS_VERSION', '1.25. 7' );25 define( 'HAPPYFORMS_VERSION', '1.25.8' ); 26 26 27 27 if ( ! function_exists( 'happyforms_get_version' ) ): -
happyforms/trunk/languages/happyforms.pot
r2931477 r2947262 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Happyforms (free) 1.25. 7\n"5 "Project-Id-Version: Happyforms (free) 1.25.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/happyforms/\n" 7 7 "Last-Translator: The Theme Foundry\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-0 6-27T14:44:58+00:00\n"12 "POT-Creation-Date: 2023-08-03T14:12:43+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.5.0\n" -
happyforms/trunk/readme.txt
r2931477 r2947262 6 6 Tested up to: 6.2 7 7 Requires PHP: 7.0 8 Stable tag: 1.25. 78 Stable tag: 1.25.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 160 160 161 161 == Changelog == 162 163 = August 3, 2023 = 164 165 Version 1.25.8 changelog: 166 167 * Added: Accessibility attribute to non-interactive fields. 168 * Fixed: XSS vulnerability issue on setting fields. 162 169 163 170 = June 1, 2023 = … … 1564 1571 == Upgrade Notice == 1565 1572 1573 = 1.25.8 = 1574 1575 * Fix XSS vulnerabiliy on setting fields, added accessibilyt improvements to non-interactive fields. 1576 1566 1577 = 1.25.7 = 1567 1578 * Fixed packaging error.
Note: See TracChangeset
for help on using the changeset viewer.