Changeset 2710334
- Timestamp:
- 04/15/2022 06:12:53 PM (4 years ago)
- Location:
- wplicense-it/trunk
- Files:
-
- 4 edited
-
includes/pages/wplit-render-product.php (modified) (1 diff)
-
includes/payment/stripe-payment.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
wplicense-it.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wplicense-it/trunk/includes/pages/wplit-render-product.php
r2699060 r2710334 81 81 if(isset($_POST['add-license'])) { 82 82 $product_id = intval( $_POST['id'] ); 83 setcookie("wplit_product_id", $product_id, time()+60 , '/');83 setcookie("wplit_product_id", $product_id, time()+600, '/'); 84 84 85 85 } -
wplicense-it/trunk/includes/payment/stripe-payment.php
r2699060 r2710334 26 26 if(isset($_POST['stripeToken'])){ 27 27 // retrieve the token generated by stripe.js 28 $token = sanitize_ key($_POST['stripeToken']);28 $token = sanitize_text_field($_POST['stripeToken']); 29 29 } 30 30 … … 86 86 $redirect = esc_url_raw(add_query_arg('payment', 'success', $url )); 87 87 88 if (isset($_COOKIE['wplit_product_id'])) { 89 unset($_COOKIE['wplit_product_id']); 90 setcookie('wplit_product_id', '', time() - 600, '/'); // empty value and old timestamp 91 } 92 88 93 do_action('wplit_after_stripe_checkout'); 89 94 }else -
wplicense-it/trunk/readme.txt
r2699065 r2710334 5 5 Tested up to: 5.9 6 6 Requires PHP: 7.0 7 Stable tag: 0.97 Stable tag: 1.0 8 8 License: GPLv2 or later 9 9 … … 11 11 12 12 == Description == 13 The best software license management solution for your WordPress applications, for developers to properly and securely manage their application software licenses. You can also push updates for your WordPress applications directlyfrom the WordPress dashboard.13 The best number-one software license management solution for your WordPress applications, for developers to properly and securely manage their application software licenses. You can also push updates for your WordPress applications from the WordPress dashboard. 14 14 15 15 = FEATURES = … … 65 65 = 0.9 = 66 66 Initial release. 67 68 = 1.0 = 69 Fix issue with Checkout and Stripe Tokens -
wplicense-it/trunk/wplicense-it.php
r2699060 r2710334 3 3 Plugin Name: WPLicense It 4 4 Plugin URI: https://wplicenseit.com/ 5 Description: Plugin and Theme Licensing plugin5 Description: WordPress Plugin and Theme Licensing plugin 6 6 Author: Devllo Plugins 7 Version: 0.97 Version: 1.0 8 8 Author URI: http://devlloplugins.com/ 9 9 Text Domain: wplicense-it
Note: See TracChangeset
for help on using the changeset viewer.