Skip to content
  1. Dec 13, 2017
  2. Sep 29, 2017
  3. Aug 29, 2017
  4. Aug 25, 2017
  5. Aug 18, 2017
  6. Aug 07, 2017
    • clive  murden's avatar
      Commit · 16bcf04d
      clive murden authored
      From 4cf68d4f90b93d57328a410909fe3e6e2602e185 Mon Sep 17 00:00:00 2001
      From: Anthony Lindsay <anthony@netrunner.ie>
      Date: Fri, 12 May 2017 12:13:15 +0100
      Subject: [PATCH] Paypal seems to not have mc_amount3 in its ipn, so we'll also
       check for mc_gross for the value.
      
      ---
       ms_core/gateways/ms_paypal_wps/ms_paypal_wps.module | 2 +-
       1 file changed, 1 insertion(+), 1 deletion(-)
      
      diff --git a/ms_core/gateways/ms_paypal_wps/ms_paypal_wps.module b/ms_core/gateways/ms_paypal_wps/ms_paypal_wps.module
      index 13e3256..125e3c8 100644
      --- a/ms_core/gateways/ms_paypal_wps/ms_paypal_wps.module
      +++ b/ms_core/gateways/ms_paypal_wps/ms_paypal_wps.module
      @@ -346,7 +346,7 @@ function ms_paypal_wps_process_ipn($ipn, $order, $gateway) {
             $trial_period = isset($ipn['period1']) ? explode(' ', $ipn['period1']) : array('', '');
             $recurring_schedule = array(
               'total_occurrences' => (isset($ipn['recur_times'])) ? $ipn['recur_times'] : 0,
      -        'main_amount' => isset($ipn['mc_amount3']) ? $ipn['mc_amount3'] : isset($ipn['amount3']) ? $ipn['amount3'] : 0,
      +        'main_amount' => isset($ipn['mc_gross']) ? $ipn['mc_gross'] : isset($ipn['mc_amount3']) ? $ipn['mc_amount3'] : isset($ipn['amount3']) ? $ipn['amount3'] : 0,
               'main_length' => $main_period[0],
               'main_unit' => $main_period[1],
               'has_trial' => ($trial_period[0]) ? TRUE : FALSE,
      --
      16bcf04d
  7. Feb 27, 2017
  8. Feb 24, 2017
  9. Oct 31, 2016
  10. Sep 15, 2016
  11. Jul 27, 2016
  12. May 28, 2016
    • Farreres's avatar
      New functionality · 8f99c2e2
      Farreres authored
      Added local function to enable/disable ccbill and credits gateways
      programatically
      2 tags
      8f99c2e2
  13. May 26, 2016
  14. May 25, 2016
  15. Apr 07, 2016
  16. Mar 08, 2016
  17. Dec 27, 2015
  18. Dec 21, 2015
  19. Dec 17, 2015
  20. Dec 05, 2015
  21. Nov 30, 2015
  22. Nov 21, 2015
  23. Nov 20, 2015
  24. Nov 17, 2015
    • Farreres's avatar
      Fixing bugs: · 161ffefb
      Farreres authored
      -Adding isset text for defaults in text_formats
      -Adding isset in page for listing membership plans
      161ffefb
  25. Nov 03, 2015
  26. Oct 19, 2015
  27. Oct 17, 2015
  28. Oct 14, 2015
  29. Oct 03, 2015
  30. Sep 25, 2015
  31. Sep 14, 2015
  32. Sep 08, 2015
  33. Aug 16, 2015