Plugin Directory

Changeset 2947262


Ignore:
Timestamp:
08/03/2023 02:16:00 PM (2 years ago)
Author:
happyforms
Message:

Update to version 1.25.8 from GitHub

Location:
happyforms
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • happyforms/tags/1.25.8/core/classes/class-form-shuffle.php

    r2885547 r2947262  
    4141    public function get_random_seed() {
    4242        if ( '' === $this->random_seed ) {
    43             $this->random_seed = (
     43            $seed = (
    4444                isset( $_REQUEST['happyforms_random_seed'] ) ?
    4545                $_REQUEST['happyforms_random_seed'] :
     
    4747            );
    4848
     49            $this->random_seed = wp_kses_post( $seed );
    4950        }
    5051
  • happyforms/tags/1.25.8/core/helpers/helper-form-templates.php

    r2931466 r2947262  
    7777
    7878    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>
    8080    <?php endif;
    8181}
  • happyforms/tags/1.25.8/happyforms.php

    r2931477 r2947262  
    66 * Description: Form builder to get in touch with visitors, grow your email list and collect payments.
    77 * Author:      Happyforms
    8  * Version:     1.25.7
     8 * Version:     1.25.8
    99 * Author URI:  https://happyforms.io
    1010 * Upgrade URI: https://happyforms.io/upgrade
     
    2323 * The current version of the plugin.
    2424 */
    25 define( 'HAPPYFORMS_VERSION', '1.25.7' );
     25define( 'HAPPYFORMS_VERSION', '1.25.8' );
    2626
    2727if ( ! function_exists( 'happyforms_get_version' ) ):
  • happyforms/tags/1.25.8/languages/happyforms.pot

    r2931477 r2947262  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Happyforms (free) 1.25.7\n"
     5"Project-Id-Version: Happyforms (free) 1.25.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/happyforms/\n"
    77"Last-Translator: The Theme Foundry\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-06-27T14:44:58+00:00\n"
     12"POT-Creation-Date: 2023-08-03T14:12:43+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.5.0\n"
  • happyforms/tags/1.25.8/readme.txt

    r2931477 r2947262  
    66Tested up to: 6.2
    77Requires PHP: 7.0
    8 Stable tag: 1.25.7
     8Stable tag: 1.25.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    160160
    161161== Changelog ==
     162
     163= August 3, 2023 =
     164
     165Version 1.25.8 changelog:
     166
     167* Added: Accessibility attribute to non-interactive fields.
     168* Fixed: XSS vulnerability issue on setting fields.
    162169
    163170= June 1, 2023 =
     
    15641571== Upgrade Notice ==
    15651572
     1573= 1.25.8 =
     1574
     1575* Fix XSS vulnerabiliy on setting fields, added accessibilyt improvements to non-interactive fields.
     1576
    15661577= 1.25.7 =
    15671578* Fixed packaging error.
  • happyforms/trunk/core/classes/class-form-shuffle.php

    r2885547 r2947262  
    4141    public function get_random_seed() {
    4242        if ( '' === $this->random_seed ) {
    43             $this->random_seed = (
     43            $seed = (
    4444                isset( $_REQUEST['happyforms_random_seed'] ) ?
    4545                $_REQUEST['happyforms_random_seed'] :
     
    4747            );
    4848
     49            $this->random_seed = wp_kses_post( $seed );
    4950        }
    5051
  • happyforms/trunk/core/helpers/helper-form-templates.php

    r2931466 r2947262  
    7777
    7878    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>
    8080    <?php endif;
    8181}
  • happyforms/trunk/happyforms.php

    r2931477 r2947262  
    66 * Description: Form builder to get in touch with visitors, grow your email list and collect payments.
    77 * Author:      Happyforms
    8  * Version:     1.25.7
     8 * Version:     1.25.8
    99 * Author URI:  https://happyforms.io
    1010 * Upgrade URI: https://happyforms.io/upgrade
     
    2323 * The current version of the plugin.
    2424 */
    25 define( 'HAPPYFORMS_VERSION', '1.25.7' );
     25define( 'HAPPYFORMS_VERSION', '1.25.8' );
    2626
    2727if ( ! function_exists( 'happyforms_get_version' ) ):
  • happyforms/trunk/languages/happyforms.pot

    r2931477 r2947262  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Happyforms (free) 1.25.7\n"
     5"Project-Id-Version: Happyforms (free) 1.25.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/happyforms/\n"
    77"Last-Translator: The Theme Foundry\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-06-27T14:44:58+00:00\n"
     12"POT-Creation-Date: 2023-08-03T14:12:43+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.5.0\n"
  • happyforms/trunk/readme.txt

    r2931477 r2947262  
    66Tested up to: 6.2
    77Requires PHP: 7.0
    8 Stable tag: 1.25.7
     8Stable tag: 1.25.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    160160
    161161== Changelog ==
     162
     163= August 3, 2023 =
     164
     165Version 1.25.8 changelog:
     166
     167* Added: Accessibility attribute to non-interactive fields.
     168* Fixed: XSS vulnerability issue on setting fields.
    162169
    163170= June 1, 2023 =
     
    15641571== Upgrade Notice ==
    15651572
     1573= 1.25.8 =
     1574
     1575* Fix XSS vulnerabiliy on setting fields, added accessibilyt improvements to non-interactive fields.
     1576
    15661577= 1.25.7 =
    15671578* Fixed packaging error.
Note: See TracChangeset for help on using the changeset viewer.