Skip to content

Commit

Permalink
- fixed order_id becomes order number
Browse files Browse the repository at this point in the history
  • Loading branch information
Xrow committed Jun 26, 2007
1 parent 82a795a commit c2f908d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/ezauthorizegateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ function doCURL( &$process )
// processing has been completed successfully so this is not possible by default.

// or get actual order id (different number used in order view urls)
$aim->addField( 'x_invoice_num', $order->attribute( 'id' ) );
$aim->addField( 'x_invoice_num', $order->attribute( 'order_nr' ) );

// assign authorize.net transaction description
$aim->addField( 'x_description', 'Order URL ID #' . $order->attribute( 'id' ) );
$aim->addField( 'x_description', 'Order URL ID #' . $order->attribute( 'order_nr' ) );

// assign customer IP
if ( !eZSys::isShellExecution() )
Expand Down

0 comments on commit c2f908d

Please sign in to comment.