http://www.mediawiki.org/wiki/Special:Code/MediaWiki/98844

Revision: 98844
Author:   khorn
Date:     2011-10-04 01:40:31 +0000 (Tue, 04 Oct 2011)
Log Message:
-----------
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: 
branches/fundraising/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php
===================================================================
--- 
branches/fundraising/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php
    2011-10-04 01:24:05 UTC (rev 98843)
+++ 
branches/fundraising/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php
    2011-10-04 01:40:31 UTC (rev 98844)
@@ -125,7 +125,7 @@
                        $this->log( $oid . " " . $i_oid . " Transaction 
unsuccessful (invalid info).", LOG_DEBUG );
                        // pass responseMsg as an array key as required by 
displayForm
                        $this->errors['retryMsg'] = $responseMsg;
-                       $this->fnPayflowDisplayForm( $data, $this->errors );
+                       $this->displayForm( $data, $this->errors );
                        // if declined or if user has already made two 
attempts, decline
                } elseif ( ( $errorCode == '2' ) || ( $data['numAttempt'] >= 
'3' ) ) {
                        $this->log( $oid . " " . $i_oid . " Transaction 
declined.", LOG_DEBUG );
@@ -140,7 +140,7 @@
                        $this->log( $oid . " " . $i_oid . " Transaction 
unsuccessful (communication failure).", LOG_DEBUG );
                        $this->fnPayflowDisplayOtherResults( $responseMsg );
                        $this->errors['retryMsg'] = $responseMsg;
-                       $this->fnPayflowDisplayForm( $data, $this->errors );
+                       $this->displayForm( $data, $this->errors );
                }
                $this->displayResultsForDebug( $result );
        }


_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to