r98844 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r98843‎ | r98844 | r98845 >
Date:01:40, 4 October 2011
Author:khorn
Status:ok
Tags:
Comment:
Located and fixed a couple places where an old function was being called, instead of the new one. r98498
Modified paths:
  • /branches/fundraising/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php (modified) (history)

Diff [purge]

Index: branches/fundraising/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php
@@ -125,7 +125,7 @@
126126 $this->log( $oid . " " . $i_oid . " Transaction unsuccessful (invalid info).", LOG_DEBUG );
127127 // pass responseMsg as an array key as required by displayForm
128128 $this->errors['retryMsg'] = $responseMsg;
129 - $this->fnPayflowDisplayForm( $data, $this->errors );
 129+ $this->displayForm( $data, $this->errors );
130130 // if declined or if user has already made two attempts, decline
131131 } elseif ( ( $errorCode == '2' ) || ( $data['numAttempt'] >= '3' ) ) {
132132 $this->log( $oid . " " . $i_oid . " Transaction declined.", LOG_DEBUG );
@@ -140,7 +140,7 @@
141141 $this->log( $oid . " " . $i_oid . " Transaction unsuccessful (communication failure).", LOG_DEBUG );
142142 $this->fnPayflowDisplayOtherResults( $responseMsg );
143143 $this->errors['retryMsg'] = $responseMsg;
144 - $this->fnPayflowDisplayForm( $data, $this->errors );
 144+ $this->displayForm( $data, $this->errors );
145145 }
146146 $this->displayResultsForDebug( $result );
147147 }

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r98498Rebuilding the payflowpro gateway and adapter, Part 2 of Several!...khorn01:45, 30 September 2011

Status & tagging log