Plugin Directory

Changeset 2773446


Ignore:
Timestamp:
08/22/2022 11:56:30 AM (4 years ago)
Author:
pcivault
Message:

PCIVault increase backwards compatibility to 4.3.1

Location:
pci-vault-forms
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • pci-vault-forms/tags/1.0.2/pcivault-forms.php

    r2773368 r2773446  
    44Plugin Name: PCI Vault Forms
    55Description: Securely capture card data using PCI Vault, which is a vendor neutral PCI DSS compliant environment.
    6 Version: 1.0.1
     6Version: 1.0.2
    77Author: PCI Vault
    88Author URI: https://pcivault.io
     
    3434    return '
    3535    <div id="pcivault_pcd_form"></div>
    36     ' . wp_get_inline_script_tag(
    37             '
    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                 })
     36    <script defer>
     37        window.addEventListener("load", function(){
     38            window.pcd_form(document.getElementById("pcivault_pcd_form"), {
     39                submit_secret: "' . $parsed_body["secret"] . '",
     40                submit_url: "' . $parsed_body["url"] . '"
    4341            })
    44             ',
    45             array(
    46                 "defer" => "defer",
    47             )
    48         );
     42        })
     43    </script>';
    4944}
    5045
  • pci-vault-forms/tags/1.0.2/readme.txt

    r2773368 r2773446  
    33Donate link: https://pcivault.io/
    44Tags: pci, dss, pci-dss, credit-card, creditcard, tokenization
    5 Requires at least: 5.7.0
     5Requires at least: 4.3.1
    66Tested up to: 6.0.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    6565== Changelog ==
    6666
     67= 1.0.2 (2022-08-22) =
     68* Reduce required Wordpress version from 5.7.0 to 4.3.1
     69
    6770= 1.0.1 (2022-08-22) =
    6871* Reduce required Wordpress version from 6.0.1 to 5.7.0
  • pci-vault-forms/trunk/pcivault-forms.php

    r2773368 r2773446  
    44Plugin Name: PCI Vault Forms
    55Description: Securely capture card data using PCI Vault, which is a vendor neutral PCI DSS compliant environment.
    6 Version: 1.0.1
     6Version: 1.0.2
    77Author: PCI Vault
    88Author URI: https://pcivault.io
     
    3434    return '
    3535    <div id="pcivault_pcd_form"></div>
    36     ' . wp_get_inline_script_tag(
    37             '
    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                 })
     36    <script defer>
     37        window.addEventListener("load", function(){
     38            window.pcd_form(document.getElementById("pcivault_pcd_form"), {
     39                submit_secret: "' . $parsed_body["secret"] . '",
     40                submit_url: "' . $parsed_body["url"] . '"
    4341            })
    44             ',
    45             array(
    46                 "defer" => "defer",
    47             )
    48         );
     42        })
     43    </script>';
    4944}
    5045
  • pci-vault-forms/trunk/readme.txt

    r2773368 r2773446  
    33Donate link: https://pcivault.io/
    44Tags: pci, dss, pci-dss, credit-card, creditcard, tokenization
    5 Requires at least: 5.7.0
     5Requires at least: 4.3.1
    66Tested up to: 6.0.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    6565== Changelog ==
    6666
     67= 1.0.2 (2022-08-22) =
     68* Reduce required Wordpress version from 5.7.0 to 4.3.1
     69
    6770= 1.0.1 (2022-08-22) =
    6871* Reduce required Wordpress version from 6.0.1 to 5.7.0
Note: See TracChangeset for help on using the changeset viewer.