Changeset 2224937
- Timestamp:
- 01/09/2020 04:45:39 PM (6 years ago)
- Location:
- limelight-forms
- Files:
-
- 1 added
- 1 deleted
- 3 edited
- 14 copied
-
tags/1.1.6 (deleted)
-
tags/1.1.9 (added)
-
tags/1.1.9/LICENSE.txt (copied) (copied from limelight-forms/trunk/LICENSE.txt)
-
tags/1.1.9/README.txt (copied) (copied from limelight-forms/trunk/README.txt) (2 diffs)
-
tags/1.1.9/app (copied) (copied from limelight-forms/trunk/app)
-
tags/1.1.9/app/Utility/License.php (copied) (copied from limelight-forms/trunk/app/Utility/License.php) (4 diffs)
-
tags/1.1.9/index.php (copied) (copied from limelight-forms/trunk/index.php) (2 diffs)
-
tags/1.1.9/languages (copied) (copied from limelight-forms/trunk/languages)
-
tags/1.1.9/uninstall.php (copied) (copied from limelight-forms/trunk/uninstall.php)
-
tags/1.1.9/vendor (copied) (copied from limelight-forms/trunk/vendor)
-
tags/1.1.9/vendor/autoload.php (copied) (copied from limelight-forms/trunk/vendor/autoload.php)
-
tags/1.1.9/vendor/composer/autoload_real.php (copied) (copied from limelight-forms/trunk/vendor/composer/autoload_real.php)
-
tags/1.1.9/vendor/composer/autoload_static.php (copied) (copied from limelight-forms/trunk/vendor/composer/autoload_static.php)
-
tags/1.1.9/vendor/composer/installed.json (copied) (copied from limelight-forms/trunk/vendor/composer/installed.json)
-
tags/1.1.9/vendor/limelight/forms/Package.php (copied) (copied from limelight-forms/trunk/vendor/limelight/forms/Package.php)
-
tags/1.1.9/vendor/limelight/forms/app/Loaders/FormLoader.php (copied) (copied from limelight-forms/trunk/vendor/limelight/forms/app/Loaders/FormLoader.php)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/app/Utility/License.php (modified) (4 diffs)
-
trunk/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
limelight-forms/tags/1.1.9/README.txt
r2224934 r2224937 8 8 Author: Limelight Dept 9 9 Tested up to: 5.3.2 10 Stable tag: "1.1. 8"11 Version 1.1. 810 Stable tag: "1.1.9" 11 Version 1.1.9 12 12 License: GPLv2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 - Fixed issue with license validation. 80 80 81 1.1. 781 1.1.8 82 82 - Fixed empty value error when there are no exclude scripts on posts options set. 83 83 84 84 85 == Frequently Asked Questions == -
limelight-forms/tags/1.1.9/app/Utility/License.php
r2224934 r2224937 4 4 5 5 use Limelight\Plugin\Forms\Plugin; 6 use Limelight\Forms\Utility\Helpers; 6 7 7 8 class License{ … … 45 46 public function activate_license(){ 46 47 47 $verify = wp_verify_nonce($_POST['security'], 'll_form_security');48 $verify = Helpers::checkNonce($_POST['security'], "ll_form_security"); 48 49 49 50 if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){ … … 93 94 public function deactivate_license(){ 94 95 95 $verify = wp_verify_nonce($_POST['security'], 'll_form_security');96 $verify = Helpers::checkNonce($_POST['security'], "ll_form_security"); 96 97 97 98 if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){ … … 141 142 public function check_license(){ 142 143 143 $verify = wp_verify_nonce($_POST['security'], 'll_form_security');144 $verify = Helpers::checkNonce($_POST['security'], "ll_form_security"); 144 145 145 146 if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){ -
limelight-forms/tags/1.1.9/index.php
r2224934 r2224937 7 7 * Plugin URI: https://limelightdept.com/ 8 8 * Description: Easily buildable forms 9 * Version: 1.1. 89 * Version: 1.1.9 10 10 * Author: Limelight Dept. 11 11 * License: GPL-2.0+ … … 22 22 "name_pretty" => "Limelight Forms", 23 23 "author" => "Limelight Dept.", 24 "version"=>"1.1. 8",24 "version"=>"1.1.9", 25 25 "file"=>__FILE__, 26 26 "path"=>plugin_dir_path( __FILE__ ), -
limelight-forms/trunk/README.txt
r2224934 r2224937 8 8 Author: Limelight Dept 9 9 Tested up to: 5.3.2 10 Stable tag: "1.1. 8"11 Version 1.1. 810 Stable tag: "1.1.9" 11 Version 1.1.9 12 12 License: GPLv2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 - Fixed issue with license validation. 80 80 81 1.1. 781 1.1.8 82 82 - Fixed empty value error when there are no exclude scripts on posts options set. 83 83 84 84 85 == Frequently Asked Questions == -
limelight-forms/trunk/app/Utility/License.php
r2224934 r2224937 4 4 5 5 use Limelight\Plugin\Forms\Plugin; 6 use Limelight\Forms\Utility\Helpers; 6 7 7 8 class License{ … … 45 46 public function activate_license(){ 46 47 47 $verify = wp_verify_nonce($_POST['security'], 'll_form_security');48 $verify = Helpers::checkNonce($_POST['security'], "ll_form_security"); 48 49 49 50 if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){ … … 93 94 public function deactivate_license(){ 94 95 95 $verify = wp_verify_nonce($_POST['security'], 'll_form_security');96 $verify = Helpers::checkNonce($_POST['security'], "ll_form_security"); 96 97 97 98 if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){ … … 141 142 public function check_license(){ 142 143 143 $verify = wp_verify_nonce($_POST['security'], 'll_form_security');144 $verify = Helpers::checkNonce($_POST['security'], "ll_form_security"); 144 145 145 146 if ( !defined( 'DOING_AJAX' ) || !DOING_AJAX || !$verify){ -
limelight-forms/trunk/index.php
r2224934 r2224937 7 7 * Plugin URI: https://limelightdept.com/ 8 8 * Description: Easily buildable forms 9 * Version: 1.1. 89 * Version: 1.1.9 10 10 * Author: Limelight Dept. 11 11 * License: GPL-2.0+ … … 22 22 "name_pretty" => "Limelight Forms", 23 23 "author" => "Limelight Dept.", 24 "version"=>"1.1. 8",24 "version"=>"1.1.9", 25 25 "file"=>__FILE__, 26 26 "path"=>plugin_dir_path( __FILE__ ),
Note: See TracChangeset
for help on using the changeset viewer.