Changeset 1596585
- Timestamp:
- 02/15/2017 01:56:51 PM (9 years ago)
- Location:
- ec-authorizenet
- Files:
-
- 4 edited
- 1 copied
-
tags/0.3.2 (copied) (copied from ec-authorizenet/trunk)
-
tags/0.3.2/index.php (modified) (2 diffs)
-
tags/0.3.2/readme.txt (modified) (4 diffs)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ec-authorizenet/tags/0.3.2/index.php
r1382204 r1596585 213 213 $auth_param['default_amount'] = (get_option('default_amount')=='') ? $this->default_amount : get_option('default_amount'); 214 214 $amount = ($_REQUEST['custom_amount']=='' || $_REQUEST['custom_amount'] < 1) ? $auth_param['default_amount'] : $_REQUEST['custom_amount']; 215 $invoice_number = ($_REQUEST['invoice_ajax']=='' || $_REQUEST['invoice_ajax']< 1) ? $auth_param['invoice_ajax'] : $_REQUEST['invoice_ajax'];215 $invoice_number = ($_REQUEST['invoice_ajax']=='' || count($_REQUEST['invoice_ajax']) < 1) ? $auth_param['invoice_ajax'] : $_REQUEST['invoice_ajax']; 216 216 217 217 $TPAuthorizeNetObj = new TPAuthorizeNet; … … 346 346 } 347 347 348 function wp_tp_authorize_net($amount, $api_login_id, $transaction_key, $ amount, $fp_timestamp, $fp_sequence) {348 function wp_tp_authorize_net($amount, $api_login_id, $transaction_key, $fp_timestamp, $fp_sequence) { 349 349 $TPAuthorizeNetObj = new TPAuthorizeNet; 350 return $TPAuthorizeNetObj->get_auth_form($amount, $api_login_id, $transaction_key, $ amount, $fp_timestamp, $fp_sequence);350 return $TPAuthorizeNetObj->get_auth_form($amount, $api_login_id, $transaction_key, $fp_timestamp, $fp_sequence); 351 351 } 352 352 -
ec-authorizenet/tags/0.3.2/readme.txt
r1382225 r1596585 4 4 Tags: Payment, payment gateway, Authorize.net, Paypal, Stripe, 5 5 Requires at least: 3.0.1 6 Tested up to: 4. 1.87 Stable tag: 0.3. 16 Tested up to: 4.7.2 7 Stable tag: 0.3.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 13 13 == Description == 14 15 EC Authorize.net is easy to use Wordpress Plugin and can be installed in just a few minutes. 14 16 15 17 Authorize.net is most widely used payment gateway to process payments online and accepts Visa, MasterCard, Discover and other variants of cards. … … 45 47 == Frequently Asked Questions == 46 48 = Can I request a new feature or custom development? = 47 Sure, I would be more than happy to help you. Please share your thoughts through info@ecarobar.com49 Sure, I would be more than happy to help you. Please share your thoughts through sftranna@gmail.com 48 50 49 51 = How can I Specify an amount thought shortcode = … … 127 129 2. Fixed bug for custom amount 128 130 131 = 0.3.2 = 132 1. Updated the invoice number field to accept all characters. 133 129 134 == Upgrade Notice == 130 135 Although this plugin does not disturb your site settings still for a security measure please backup your data before upgrading -
ec-authorizenet/trunk/index.php
r1382204 r1596585 213 213 $auth_param['default_amount'] = (get_option('default_amount')=='') ? $this->default_amount : get_option('default_amount'); 214 214 $amount = ($_REQUEST['custom_amount']=='' || $_REQUEST['custom_amount'] < 1) ? $auth_param['default_amount'] : $_REQUEST['custom_amount']; 215 $invoice_number = ($_REQUEST['invoice_ajax']=='' || $_REQUEST['invoice_ajax']< 1) ? $auth_param['invoice_ajax'] : $_REQUEST['invoice_ajax'];215 $invoice_number = ($_REQUEST['invoice_ajax']=='' || count($_REQUEST['invoice_ajax']) < 1) ? $auth_param['invoice_ajax'] : $_REQUEST['invoice_ajax']; 216 216 217 217 $TPAuthorizeNetObj = new TPAuthorizeNet; … … 346 346 } 347 347 348 function wp_tp_authorize_net($amount, $api_login_id, $transaction_key, $ amount, $fp_timestamp, $fp_sequence) {348 function wp_tp_authorize_net($amount, $api_login_id, $transaction_key, $fp_timestamp, $fp_sequence) { 349 349 $TPAuthorizeNetObj = new TPAuthorizeNet; 350 return $TPAuthorizeNetObj->get_auth_form($amount, $api_login_id, $transaction_key, $ amount, $fp_timestamp, $fp_sequence);350 return $TPAuthorizeNetObj->get_auth_form($amount, $api_login_id, $transaction_key, $fp_timestamp, $fp_sequence); 351 351 } 352 352 -
ec-authorizenet/trunk/readme.txt
r1382225 r1596585 4 4 Tags: Payment, payment gateway, Authorize.net, Paypal, Stripe, 5 5 Requires at least: 3.0.1 6 Tested up to: 4. 1.87 Stable tag: 0.3. 16 Tested up to: 4.7.2 7 Stable tag: 0.3.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 13 13 == Description == 14 15 EC Authorize.net is easy to use Wordpress Plugin and can be installed in just a few minutes. 14 16 15 17 Authorize.net is most widely used payment gateway to process payments online and accepts Visa, MasterCard, Discover and other variants of cards. … … 45 47 == Frequently Asked Questions == 46 48 = Can I request a new feature or custom development? = 47 Sure, I would be more than happy to help you. Please share your thoughts through info@ecarobar.com49 Sure, I would be more than happy to help you. Please share your thoughts through sftranna@gmail.com 48 50 49 51 = How can I Specify an amount thought shortcode = … … 127 129 2. Fixed bug for custom amount 128 130 131 = 0.3.2 = 132 1. Updated the invoice number field to accept all characters. 133 129 134 == Upgrade Notice == 130 135 Although this plugin does not disturb your site settings still for a security measure please backup your data before upgrading
Note: See TracChangeset
for help on using the changeset viewer.