Changeset 2795682
- Timestamp:
- 10/07/2022 02:02:23 PM (3 years ago)
- Location:
- sky-systemz
- Files:
-
- 2 edited
-
tags/1.01/SkySystemz-woocommerceCheckout.php (modified) (1 diff)
-
trunk/SkySystemz-woocommerceCheckout.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sky-systemz/tags/1.01/SkySystemz-woocommerceCheckout.php
r2742765 r2795682 338 338 $ccc_no = str_replace("-", "", $_POST['skysystemz_ccNo']); 339 339 $args = array( 340 " formcardnumber" => $ccc_no,341 " formcvv" => sanitize_text_field($_POST['skysystemz_cvv']),340 "number" => $ccc_no, 341 "cvv" => sanitize_text_field($_POST['skysystemz_cvv']), 342 342 "amount" => round($order->get_total() * 100), 343 343 "merchant_key" => $result->merchant_keys, 344 344 "orderId" => $order->get_id(), 345 345 "desc" => $titles, 346 " formexpiremonth" => sanitize_text_field($_POST['skysystemz_expdate_month']),347 " formexpireyear" => sanitize_text_field($_POST['skysystemz_expdate_year']),346 "mm" => sanitize_text_field($_POST['skysystemz_expdate_month']), 347 "yy" => sanitize_text_field($_POST['skysystemz_expdate_year']), 348 348 "card_holder_name" => sanitize_text_field($_POST['skysystemz_card_holder']), 349 349 ); -
sky-systemz/trunk/SkySystemz-woocommerceCheckout.php
r2742765 r2795682 338 338 $ccc_no = str_replace("-", "", $_POST['skysystemz_ccNo']); 339 339 $args = array( 340 " formcardnumber" => $ccc_no,341 " formcvv" => sanitize_text_field($_POST['skysystemz_cvv']),340 "number" => $ccc_no, 341 "cvv" => sanitize_text_field($_POST['skysystemz_cvv']), 342 342 "amount" => round($order->get_total() * 100), 343 343 "merchant_key" => $result->merchant_keys, 344 344 "orderId" => $order->get_id(), 345 345 "desc" => $titles, 346 " formexpiremonth" => sanitize_text_field($_POST['skysystemz_expdate_month']),347 " formexpireyear" => sanitize_text_field($_POST['skysystemz_expdate_year']),346 "mm" => sanitize_text_field($_POST['skysystemz_expdate_month']), 347 "yy" => sanitize_text_field($_POST['skysystemz_expdate_year']), 348 348 "card_holder_name" => sanitize_text_field($_POST['skysystemz_card_holder']), 349 349 );
Note: See TracChangeset
for help on using the changeset viewer.