Changed function names for less typing.
authorLisa Marie Maginnis <lisam@fsf.org>
Thu, 8 May 2014 16:39:32 +0000 (12:39 -0400)
committerLisa Marie Maginnis <lisam@fsf.org>
Thu, 8 May 2014 16:39:32 +0000 (12:39 -0400)
trustcommerce.php

index 48ec23764919891448b30a0692f3406c4fb43230..4651a9f91fb72db826e186063173892c115e744b 100644 (file)
@@ -124,7 +124,7 @@ class org_fsf_payment_trustcommerce extends CRM_Core_Payment {
     $reply = tclink_send($tc_params);
 
     /* Parse our reply */
-    $result = $this->_getTrustCommerceReply($reply);
+    $result = $this->_getTCReply($reply);
 
     if($result == 0) {
       /* We were successful, congrats. Lets wrap it up:
@@ -185,7 +185,7 @@ class org_fsf_payment_trustcommerce extends CRM_Core_Payment {
    * @param  $reply array The result of a call to tclink_send().
    * @return mixed self::error() if transaction failed, otherwise returns 0.
    */
-  function _getTrustCommerceReply($reply) {
+  function _getTCReply($reply) {
 
     /* DUPLIATE CODE, please refactor. ~lisa */
     if (!$reply) {