Index: branches/fundraising/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php |
— | — | @@ -125,7 +125,7 @@ |
126 | 126 | $this->log( $oid . " " . $i_oid . " Transaction unsuccessful (invalid info).", LOG_DEBUG ); |
127 | 127 | // pass responseMsg as an array key as required by displayForm |
128 | 128 | $this->errors['retryMsg'] = $responseMsg; |
129 | | - $this->fnPayflowDisplayForm( $data, $this->errors ); |
| 129 | + $this->displayForm( $data, $this->errors ); |
130 | 130 | // if declined or if user has already made two attempts, decline |
131 | 131 | } elseif ( ( $errorCode == '2' ) || ( $data['numAttempt'] >= '3' ) ) { |
132 | 132 | $this->log( $oid . " " . $i_oid . " Transaction declined.", LOG_DEBUG ); |
— | — | @@ -140,7 +140,7 @@ |
141 | 141 | $this->log( $oid . " " . $i_oid . " Transaction unsuccessful (communication failure).", LOG_DEBUG ); |
142 | 142 | $this->fnPayflowDisplayOtherResults( $responseMsg ); |
143 | 143 | $this->errors['retryMsg'] = $responseMsg; |
144 | | - $this->fnPayflowDisplayForm( $data, $this->errors ); |
| 144 | + $this->displayForm( $data, $this->errors ); |
145 | 145 | } |
146 | 146 | $this->displayResultsForDebug( $result ); |
147 | 147 | } |