fix function signature to match interface & not give warning
authorEileen McNaughton <eileen@fuzion.co.nz>
Fri, 28 Mar 2014 02:49:02 +0000 (15:49 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Fri, 28 Mar 2014 04:00:55 +0000 (17:00 +1300)
CRM/Core/Payment/PayJunction.php

index 708028869514692d9e8d2da65f2203d7a9058ce2..1be136f40b3b60bbe17d4a1968c639d1902b0d4c 100644 (file)
@@ -53,7 +53,7 @@ class CRM_Core_Payment_PayJunction extends CRM_Core_Payment {
    * @static
    *
    */
-  static function &singleton($mode, &$paymentProcessor) {
+  static function &singleton($mode, &$paymentProcessor, &$paymentForm = NULL, $force = false) {
     $processorName = $paymentProcessor['name'];
     if (self::$_singleton[$processorName] === NULL) {
       self::$_singleton[$processorName] = new CRM_Core_Payment_PayJunction($mode, $paymentProcessor);