Plugin Directory

Changeset 2224937


Ignore:
Timestamp:
01/09/2020 04:45:39 PM (6 years ago)
Author:
limelightdept
Message:

tagging version 1.1.9

Location:
limelight-forms
Files:
1 added
1 deleted
3 edited
14 copied

Legend:

Unmodified
Added
Removed
  • limelight-forms/tags/1.1.9/README.txt

    r2224934 r2224937  
    88Author: Limelight Dept
    99Tested up to: 5.3.2
    10 Stable tag: "1.1.8"
    11 Version 1.1.8
     10Stable tag: "1.1.9"
     11Version 1.1.9
    1212License: GPLv2 or later
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979- Fixed issue with license validation.
    8080
    81 1.1.7
     811.1.8
    8282- Fixed empty value error when there are no exclude scripts on posts options set.
    8383
     84
    8485== Frequently Asked Questions ==
  • limelight-forms/tags/1.1.9/app/Utility/License.php

    r2224934 r2224937  
    44
    55use Limelight\Plugin\Forms\Plugin;
     6use Limelight\Forms\Utility\Helpers;
    67
    78class License{
     
    4546    public function activate_license(){
    4647
    47         $verify = wp_verify_nonce($_POST['security'], 'll_form_security');
     48        $verify = Helpers::checkNonce($_POST['security'], "ll_form_security");
    4849
    4950        if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){
     
    9394    public function deactivate_license(){
    9495
    95         $verify = wp_verify_nonce($_POST['security'], 'll_form_security');
     96        $verify = Helpers::checkNonce($_POST['security'], "ll_form_security");
    9697
    9798        if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){
     
    141142    public function check_license(){
    142143
    143         $verify = wp_verify_nonce($_POST['security'], 'll_form_security');
     144        $verify = Helpers::checkNonce($_POST['security'], "ll_form_security");
    144145
    145146        if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){
  • limelight-forms/tags/1.1.9/index.php

    r2224934 r2224937  
    77 * Plugin URI:        https://limelightdept.com/
    88 * Description:       Easily buildable forms
    9  * Version:           1.1.8
     9 * Version:           1.1.9
    1010 * Author:            Limelight Dept.
    1111 * License:           GPL-2.0+
     
    2222    "name_pretty" => "Limelight Forms",
    2323    "author" => "Limelight Dept.",
    24     "version"=>"1.1.8",
     24    "version"=>"1.1.9",
    2525    "file"=>__FILE__,
    2626    "path"=>plugin_dir_path( __FILE__ ),
  • limelight-forms/trunk/README.txt

    r2224934 r2224937  
    88Author: Limelight Dept
    99Tested up to: 5.3.2
    10 Stable tag: "1.1.8"
    11 Version 1.1.8
     10Stable tag: "1.1.9"
     11Version 1.1.9
    1212License: GPLv2 or later
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979- Fixed issue with license validation.
    8080
    81 1.1.7
     811.1.8
    8282- Fixed empty value error when there are no exclude scripts on posts options set.
    8383
     84
    8485== Frequently Asked Questions ==
  • limelight-forms/trunk/app/Utility/License.php

    r2224934 r2224937  
    44
    55use Limelight\Plugin\Forms\Plugin;
     6use Limelight\Forms\Utility\Helpers;
    67
    78class License{
     
    4546    public function activate_license(){
    4647
    47         $verify = wp_verify_nonce($_POST['security'], 'll_form_security');
     48        $verify = Helpers::checkNonce($_POST['security'], "ll_form_security");
    4849
    4950        if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){
     
    9394    public function deactivate_license(){
    9495
    95         $verify = wp_verify_nonce($_POST['security'], 'll_form_security');
     96        $verify = Helpers::checkNonce($_POST['security'], "ll_form_security");
    9697
    9798        if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){
     
    141142    public function check_license(){
    142143
    143         $verify = wp_verify_nonce($_POST['security'], 'll_form_security');
     144        $verify = Helpers::checkNonce($_POST['security'], "ll_form_security");
    144145
    145146        if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){
  • limelight-forms/trunk/index.php

    r2224934 r2224937  
    77 * Plugin URI:        https://limelightdept.com/
    88 * Description:       Easily buildable forms
    9  * Version:           1.1.8
     9 * Version:           1.1.9
    1010 * Author:            Limelight Dept.
    1111 * License:           GPL-2.0+
     
    2222    "name_pretty" => "Limelight Forms",
    2323    "author" => "Limelight Dept.",
    24     "version"=>"1.1.8",
     24    "version"=>"1.1.9",
    2525    "file"=>__FILE__,
    2626    "path"=>plugin_dir_path( __FILE__ ),
Note: See TracChangeset for help on using the changeset viewer.