Skip to content

Commit

Permalink
fixed: fetched wrong post var.
Browse files Browse the repository at this point in the history
  • Loading branch information
Xrow committed Jun 26, 2007
1 parent ee052b2 commit 82a795a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/ezauthorizegateway.php
Expand Up @@ -116,7 +116,7 @@ function storeHTTPInput( &$process )
if( is_array( $this->data ) )
{
$this->data['ezauthorize-card-name'] = trim( $http->postVariable( 'CardName' ) );
$this->data['ezauthorize-card-number'] = trim( $http->postVariable( 'SecurityNumber' ) );
$this->data['ezauthorize-card-number'] = trim( $http->postVariable( 'CardNumber' ) );
$this->data['ezauthorize-card-date'] = trim( $http->postVariable( 'ExpirationMonth' ) ) . trim( $http->postVariable( 'ExpirationYear' ) );
$this->data['ezauthorize-card-type'] = strtolower( $http->postVariable( 'CardType' ) );
$this->data['ezauthorize-security-number'] = trim( $http->postVariable( 'SecurityNumber' ) );
Expand Down

0 comments on commit 82a795a

Please sign in to comment.