Plugin Directory

Changeset 3055872


Ignore:
Timestamp:
03/21/2024 07:53:09 AM (2 years ago)
Author:
codeapple
Message:
  • Updated: Form will work to submit from all browsers
  • Fixed: Form submission security issue
Location:
wordform
Files:
90 added
3 edited

Legend:

Unmodified
Added
Removed
  • wordform/trunk/includes/class-sftcy-wordform-ajaxhandler.php

    r3046484 r3055872  
    5555                // Ajax : Front-end users form submit
    5656                add_action( 'wp_ajax_sc_wordform_created_form_submission', array( __CLASS__, 'sc_wordform_created_form_submission' ) );
    57                 // add_action( 'wp_ajax_nopriv_sc_wordform_created_form_submission', [ __CLASS__, 'sc_wordform_created_form_submission'] );
     57                add_action( 'wp_ajax_nopriv_sc_wordform_created_form_submission', [ __CLASS__, 'sc_wordform_created_form_submission'] );
    5858
    5959                // REST API : End Points : Wordform Block Editor
  • wordform/trunk/readme.txt

    r3046484 r3055872  
    66Requires at least: 6.0
    77Tested up to: 6.4
    8 Stable tag: 1.1.0
     8Stable tag: 1.2.0
    99Requires PHP: 7.2
    1010License: GPLv3
     
    8888== Changelog ==
    8989
     90= 1.2.0 =
     91* Updated: Form will work to submit from all browsers
     92* Fixed: Form submission security issue
     93
    9094= 1.1.0 =
    9195* Updated: Displaying latest users submit form data on top
     
    107111
    108112== Upgrade Notice ==
    109 = 1.1.0 =
     113= 1.2.0 =
    110114Upgrade to latest version.
  • wordform/trunk/wordform.php

    r3046484 r3055872  
    44 * Plugin URI:  http://softcoy.com/wordform/
    55 * Description: WordForm - Drag & drop easy forms builder for WordPress sites. Block enabled WordForm plugin to add / attach your created Forms with your page / post easily.
    6  * Version:     1.1.0
     6 * Version:     1.2.0
    77 * Author:      softcoy
    88 * Author URI:  https://softcoy.com/
     
    3636
    3737if ( ! defined( 'SFTCY_WORDFORM_VERSION' ) ) {
    38     define( 'SFTCY_WORDFORM_VERSION', '1.1.0' );
     38    define( 'SFTCY_WORDFORM_VERSION', '1.2.0' );
    3939}
    4040if ( ! defined( 'SFTCY_WORDFORM_MINIMUM_PHP_VERSION' ) ) {
Note: See TracChangeset for help on using the changeset viewer.