From 82a795ad8da34096a83f63baebee5709a0731e70 Mon Sep 17 00:00:00 2001 From: Xrow Date: Tue, 26 Jun 2007 15:21:28 +0000 Subject: [PATCH] fixed: fetched wrong post var. --- classes/ezauthorizegateway.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/ezauthorizegateway.php b/classes/ezauthorizegateway.php index f4fda79..a3f189e 100644 --- a/classes/ezauthorizegateway.php +++ b/classes/ezauthorizegateway.php @@ -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' ) );