Plugin Directory

Changeset 1596585


Ignore:
Timestamp:
02/15/2017 01:56:51 PM (9 years ago)
Author:
sftranna
Message:

tagging version 0.3.2 for invoice number for text

Location:
ec-authorizenet
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ec-authorizenet/tags/0.3.2/index.php

    r1382204 r1596585  
    213213            $auth_param['default_amount'] = (get_option('default_amount')=='') ? $this->default_amount : get_option('default_amount');
    214214            $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'];
    216216           
    217217            $TPAuthorizeNetObj = new TPAuthorizeNet;
     
    346346}
    347347
    348 function wp_tp_authorize_net($amount, $api_login_id, $transaction_key, $amount, $fp_timestamp, $fp_sequence) {
     348function wp_tp_authorize_net($amount, $api_login_id, $transaction_key, $fp_timestamp, $fp_sequence) {
    349349    $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);
    351351}
    352352
  • ec-authorizenet/tags/0.3.2/readme.txt

    r1382225 r1596585  
    44Tags: Payment, payment gateway, Authorize.net, Paypal, Stripe,
    55Requires at least: 3.0.1
    6 Tested up to: 4.1.8
    7 Stable tag: 0.3.1
     6Tested up to: 4.7.2
     7Stable tag: 0.3.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1212
    1313== Description ==
     14
     15EC Authorize.net is easy to use Wordpress Plugin and can be installed in just a few minutes.
    1416
    1517Authorize.net is most widely used payment gateway to process payments online and accepts Visa, MasterCard, Discover and other variants of cards.
     
    4547== Frequently Asked Questions ==
    4648= 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.com
     49Sure, I would be more than happy to help you. Please share your thoughts through sftranna@gmail.com
    4850
    4951= How can I Specify an amount thought shortcode =
     
    1271292. Fixed bug for custom amount
    128130
     131= 0.3.2 =
     1321. Updated the invoice number field to accept all characters.
     133
    129134== Upgrade Notice ==
    130135Although 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  
    213213            $auth_param['default_amount'] = (get_option('default_amount')=='') ? $this->default_amount : get_option('default_amount');
    214214            $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'];
    216216           
    217217            $TPAuthorizeNetObj = new TPAuthorizeNet;
     
    346346}
    347347
    348 function wp_tp_authorize_net($amount, $api_login_id, $transaction_key, $amount, $fp_timestamp, $fp_sequence) {
     348function wp_tp_authorize_net($amount, $api_login_id, $transaction_key, $fp_timestamp, $fp_sequence) {
    349349    $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);
    351351}
    352352
  • ec-authorizenet/trunk/readme.txt

    r1382225 r1596585  
    44Tags: Payment, payment gateway, Authorize.net, Paypal, Stripe,
    55Requires at least: 3.0.1
    6 Tested up to: 4.1.8
    7 Stable tag: 0.3.1
     6Tested up to: 4.7.2
     7Stable tag: 0.3.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1212
    1313== Description ==
     14
     15EC Authorize.net is easy to use Wordpress Plugin and can be installed in just a few minutes.
    1416
    1517Authorize.net is most widely used payment gateway to process payments online and accepts Visa, MasterCard, Discover and other variants of cards.
     
    4547== Frequently Asked Questions ==
    4648= 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.com
     49Sure, I would be more than happy to help you. Please share your thoughts through sftranna@gmail.com
    4850
    4951= How can I Specify an amount thought shortcode =
     
    1271292. Fixed bug for custom amount
    128130
     131= 0.3.2 =
     1321. Updated the invoice number field to accept all characters.
     133
    129134== Upgrade Notice ==
    130135Although 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.