Changeset 3435001
- Timestamp:
- 01/08/2026 09:52:57 AM (2 months ago)
- Location:
- accept-stripe-payments-using-contact-form-7
- Files:
-
- 6 edited
- 1 copied
-
tags/3.3 (copied) (copied from accept-stripe-payments-using-contact-form-7/trunk)
-
tags/3.3/accept-stripe-payments-using-contact-form-7.php (modified) (2 diffs)
-
tags/3.3/inc/lib/class.cf7sa.lib.php (modified) (1 diff)
-
tags/3.3/readme.txt (modified) (3 diffs)
-
trunk/accept-stripe-payments-using-contact-form-7.php (modified) (2 diffs)
-
trunk/inc/lib/class.cf7sa.lib.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
accept-stripe-payments-using-contact-form-7/tags/3.3/accept-stripe-payments-using-contact-form-7.php
r3418155 r3435001 4 4 * Plugin URL: # 5 5 * Description: This plugin will integrate Stripe payment gateway for making your payments through Contact Form 7. 6 * Version: 3. 26 * Version: 3.3 7 7 * Author: ZealousWeb 8 8 * Author URI: https://www.zealousweb.com … … 23 23 * 24 24 * @package Accept Stripe Payments Using Contact Form 7 25 * @since 3. 225 * @since 3.3 26 26 */ 27 27 28 29 28 if ( !defined( 'CF7SA_VERSION' ) ) { 30 define( 'CF7SA_VERSION', '3. 2' ); // Version of plugin29 define( 'CF7SA_VERSION', '3.3' ); // Version of plugin 31 30 } 32 31 -
accept-stripe-payments-using-contact-form-7/tags/3.3/inc/lib/class.cf7sa.lib.php
r3418155 r3435001 72 72 73 73 if ( !isset( $_SESSION ) || session_status() == PHP_SESSION_NONE ) { 74 session_start( );74 session_start(['read_and_close' => true]); 75 75 } 76 76 } -
accept-stripe-payments-using-contact-form-7/tags/3.3/readme.txt
r3418155 r3435001 9 9 License: GPLv3 10 10 CF7 requires at least: 3.0 11 CF7 tested up to: 5.812 Stable tag: 3. 213 Version: 3. 211 CF7 tested up to: 6.1.4 12 Stable tag: 3.3 13 Version: 3.3 14 14 License URI: http://www.gnu.org/licenses/gpl-3.0.html 15 15 … … 133 133 == Changelog == 134 134 135 = 3.3 = 136 * Resolved minor issues. 137 135 138 = 3.2 = 136 139 * Resolved : Responsible Disclosure for Security Issue in Your Product: Accept Stripe Payments Using Contact Form 7 … … 209 212 == Upgrade Notice == 210 213 214 = 3.3 = 215 * Resolved minor issues. 216 217 = 3.2 = 218 * Resolved : Responsible Disclosure for Security Issue in Your Product: Accept Stripe Payments Using Contact Form 7 219 220 = 3.1 = 221 * Security Update. 222 223 = 3.0 = 224 * Minor changes - Doc update 225 226 = 2.9 = 227 * Minor adjustments 228 229 = 2.8 = 230 * Minor adjustments regarding workflow 231 232 = 2.7 = 233 * security issues fixed. 234 * radio button values issue fixed. 235 236 = 2.6 = 237 * security issues fixed. 238 * select box values issue fixed. 239 * radio button value issue fixed. 240 241 = 2.5 = 242 * spinner issue fixed. 243 244 = 2.4 = 245 * Enable the Postal Code / Zip Code field on the Card 246 * Dynamic Payment Successful Message for Admin: Allow admins to customize and display a dynamic message upon successful payment. 247 248 = 2.3 = 249 * Bug Resolved 250 251 = 2.2 = 252 * Improved compatibility with WordPress VIP platform by refactoring code to adhere to VIP coding standards. 253 254 = 2.1 = 255 * The problem with the log file on the frontend has been resolved. 256 257 = 2.0 = 258 * Transactions failing bug fixed. 259 260 = 1.9 = 261 * Uploaded missing API library files(fixed fatal error on activation), Updated Payment intent script. 262 263 = 1.8 = 264 * Fixed fatal error of API Requestor library. 265 266 = 1.7 = 267 * Updated API requestor library. 268 269 = 1.6 = 270 * Fixed contact form 7 Form setting for saving sandbox value for stripe. 271 272 = 1.5 = 273 * Updated the Stripe Library : Made use of the Payment Intents API that can handle complex payment flows. 274 275 = 1.4 = 276 * Fix : solved issue of showing Message on Submit 277 278 = 1.3 = 279 * Fix : Testing with lates CF7 5.6 and WP 6.0.1 and fix issues. 280 281 = 1.2 = 282 * Fix minor bugs and improve functionality 283 211 284 = 1.1 = 212 1.0 Compatibility with latest cf7 version. 285 * Compatibility with latest cf7 version 286 * Fix minor bugs and improve functionality 213 287 214 288 = 1.0 = 215 1.0 is Initial Release. 289 * Initial Release -
accept-stripe-payments-using-contact-form-7/trunk/accept-stripe-payments-using-contact-form-7.php
r3418155 r3435001 4 4 * Plugin URL: # 5 5 * Description: This plugin will integrate Stripe payment gateway for making your payments through Contact Form 7. 6 * Version: 3. 26 * Version: 3.3 7 7 * Author: ZealousWeb 8 8 * Author URI: https://www.zealousweb.com … … 23 23 * 24 24 * @package Accept Stripe Payments Using Contact Form 7 25 * @since 3. 225 * @since 3.3 26 26 */ 27 27 28 29 28 if ( !defined( 'CF7SA_VERSION' ) ) { 30 define( 'CF7SA_VERSION', '3. 2' ); // Version of plugin29 define( 'CF7SA_VERSION', '3.3' ); // Version of plugin 31 30 } 32 31 -
accept-stripe-payments-using-contact-form-7/trunk/inc/lib/class.cf7sa.lib.php
r3418155 r3435001 72 72 73 73 if ( !isset( $_SESSION ) || session_status() == PHP_SESSION_NONE ) { 74 session_start( );74 session_start(['read_and_close' => true]); 75 75 } 76 76 } -
accept-stripe-payments-using-contact-form-7/trunk/readme.txt
r3418155 r3435001 9 9 License: GPLv3 10 10 CF7 requires at least: 3.0 11 CF7 tested up to: 5.812 Stable tag: 3. 213 Version: 3. 211 CF7 tested up to: 6.1.4 12 Stable tag: 3.3 13 Version: 3.3 14 14 License URI: http://www.gnu.org/licenses/gpl-3.0.html 15 15 … … 133 133 == Changelog == 134 134 135 = 3.3 = 136 * Resolved minor issues. 137 135 138 = 3.2 = 136 139 * Resolved : Responsible Disclosure for Security Issue in Your Product: Accept Stripe Payments Using Contact Form 7 … … 209 212 == Upgrade Notice == 210 213 214 = 3.3 = 215 * Resolved minor issues. 216 217 = 3.2 = 218 * Resolved : Responsible Disclosure for Security Issue in Your Product: Accept Stripe Payments Using Contact Form 7 219 220 = 3.1 = 221 * Security Update. 222 223 = 3.0 = 224 * Minor changes - Doc update 225 226 = 2.9 = 227 * Minor adjustments 228 229 = 2.8 = 230 * Minor adjustments regarding workflow 231 232 = 2.7 = 233 * security issues fixed. 234 * radio button values issue fixed. 235 236 = 2.6 = 237 * security issues fixed. 238 * select box values issue fixed. 239 * radio button value issue fixed. 240 241 = 2.5 = 242 * spinner issue fixed. 243 244 = 2.4 = 245 * Enable the Postal Code / Zip Code field on the Card 246 * Dynamic Payment Successful Message for Admin: Allow admins to customize and display a dynamic message upon successful payment. 247 248 = 2.3 = 249 * Bug Resolved 250 251 = 2.2 = 252 * Improved compatibility with WordPress VIP platform by refactoring code to adhere to VIP coding standards. 253 254 = 2.1 = 255 * The problem with the log file on the frontend has been resolved. 256 257 = 2.0 = 258 * Transactions failing bug fixed. 259 260 = 1.9 = 261 * Uploaded missing API library files(fixed fatal error on activation), Updated Payment intent script. 262 263 = 1.8 = 264 * Fixed fatal error of API Requestor library. 265 266 = 1.7 = 267 * Updated API requestor library. 268 269 = 1.6 = 270 * Fixed contact form 7 Form setting for saving sandbox value for stripe. 271 272 = 1.5 = 273 * Updated the Stripe Library : Made use of the Payment Intents API that can handle complex payment flows. 274 275 = 1.4 = 276 * Fix : solved issue of showing Message on Submit 277 278 = 1.3 = 279 * Fix : Testing with lates CF7 5.6 and WP 6.0.1 and fix issues. 280 281 = 1.2 = 282 * Fix minor bugs and improve functionality 283 211 284 = 1.1 = 212 1.0 Compatibility with latest cf7 version. 285 * Compatibility with latest cf7 version 286 * Fix minor bugs and improve functionality 213 287 214 288 = 1.0 = 215 1.0 is Initial Release. 289 * Initial Release
Note: See TracChangeset
for help on using the changeset viewer.