Changeset 2773368
- Timestamp:
- 08/22/2022 09:49:59 AM (4 years ago)
- Location:
- pci-vault-forms
- Files:
-
- 1 deleted
- 4 edited
- 1 copied
-
assets/icon256x256.jpg (deleted)
-
tags/1.0.1 (copied) (copied from pci-vault-forms/trunk)
-
tags/1.0.1/pcivault-forms.php (modified) (3 diffs)
-
tags/1.0.1/readme.txt (modified) (2 diffs)
-
trunk/pcivault-forms.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pci-vault-forms/tags/1.0.1/pcivault-forms.php
r2772611 r2773368 4 4 Plugin Name: PCI Vault Forms 5 5 Description: Securely capture card data using PCI Vault, which is a vendor neutral PCI DSS compliant environment. 6 Version: 1.0. 06 Version: 1.0.1 7 7 Author: PCI Vault 8 8 Author URI: https://pcivault.io … … 30 30 31 31 wp_enqueue_style("pcivault_capture_style", "https://api.pcivault.io/pcd/pcd_form.css"); 32 wp_enqueue_script("pcivault_capture_script", "https://api.pcivault.io/pcd/pcd_form.js" );32 wp_enqueue_script("pcivault_capture_script", "https://api.pcivault.io/pcd/pcd_form.js", array(), false, false); 33 33 34 34 return ' … … 36 36 ' . wp_get_inline_script_tag( 37 37 ' 38 window.pcd_form(document.getElementById("pcivault_pcd_form"), { 39 submit_secret: "' . $parsed_body["secret"] . '", 40 submit_url: "' . $parsed_body["url"] . '" 38 window.addEventListener("load", function(){ 39 window.pcd_form(document.getElementById("pcivault_pcd_form"), { 40 submit_secret: "' . $parsed_body["secret"] . '", 41 submit_url: "' . $parsed_body["url"] . '" 42 }) 41 43 }) 42 44 ', 43 45 array( 44 "defer" => True,46 "defer" => "defer", 45 47 ) 46 48 ); -
pci-vault-forms/tags/1.0.1/readme.txt
r2772611 r2773368 3 3 Donate link: https://pcivault.io/ 4 4 Tags: pci, dss, pci-dss, credit-card, creditcard, tokenization 5 Requires at least: 6.0.15 Requires at least: 5.7.0 6 6 Tested up to: 6.0.1 7 Stable tag: 1.0.0 8 Requires PHP: 7.4 7 Stable tag: 1.0.1 9 8 License: MIT 10 9 License URI: https://opensource.org/licenses/MIT … … 66 65 == Changelog == 67 66 67 = 1.0.1 (2022-08-22) = 68 * Reduce required Wordpress version from 6.0.1 to 5.7.0 69 68 70 = 1.0.0 (2022-08-17) = 69 71 * Initial version -
pci-vault-forms/trunk/pcivault-forms.php
r2772611 r2773368 4 4 Plugin Name: PCI Vault Forms 5 5 Description: Securely capture card data using PCI Vault, which is a vendor neutral PCI DSS compliant environment. 6 Version: 1.0. 06 Version: 1.0.1 7 7 Author: PCI Vault 8 8 Author URI: https://pcivault.io … … 30 30 31 31 wp_enqueue_style("pcivault_capture_style", "https://api.pcivault.io/pcd/pcd_form.css"); 32 wp_enqueue_script("pcivault_capture_script", "https://api.pcivault.io/pcd/pcd_form.js" );32 wp_enqueue_script("pcivault_capture_script", "https://api.pcivault.io/pcd/pcd_form.js", array(), false, false); 33 33 34 34 return ' … … 36 36 ' . wp_get_inline_script_tag( 37 37 ' 38 window.pcd_form(document.getElementById("pcivault_pcd_form"), { 39 submit_secret: "' . $parsed_body["secret"] . '", 40 submit_url: "' . $parsed_body["url"] . '" 38 window.addEventListener("load", function(){ 39 window.pcd_form(document.getElementById("pcivault_pcd_form"), { 40 submit_secret: "' . $parsed_body["secret"] . '", 41 submit_url: "' . $parsed_body["url"] . '" 42 }) 41 43 }) 42 44 ', 43 45 array( 44 "defer" => True,46 "defer" => "defer", 45 47 ) 46 48 ); -
pci-vault-forms/trunk/readme.txt
r2772611 r2773368 3 3 Donate link: https://pcivault.io/ 4 4 Tags: pci, dss, pci-dss, credit-card, creditcard, tokenization 5 Requires at least: 6.0.15 Requires at least: 5.7.0 6 6 Tested up to: 6.0.1 7 Stable tag: 1.0.0 8 Requires PHP: 7.4 7 Stable tag: 1.0.1 9 8 License: MIT 10 9 License URI: https://opensource.org/licenses/MIT … … 66 65 == Changelog == 67 66 67 = 1.0.1 (2022-08-22) = 68 * Reduce required Wordpress version from 6.0.1 to 5.7.0 69 68 70 = 1.0.0 (2022-08-17) = 69 71 * Initial version
Note: See TracChangeset
for help on using the changeset viewer.