Skip to content
  1. Jan 05, 2018
  2. Jan 04, 2018
    • clive  murden's avatar
      Fix Membership expiring soon emails fail reported by Anthony Lindsay. · 7614c7f4
      clive murden authored
      patch authored by Anthony Lindsay.
      
      diff --git a/ms_core/ms_products/ms_products.module
      b/ms_core/ms_products/ms_products.module
      index 2688e1d..652442d 100644
      --- a/ms_core/ms_products/ms_products.module
      +++ b/ms_core/ms_products/ms_products.module
      @@ -4,7 +4,7 @@
        * @file
        * Products API module which provides common storage and handling of
      products.
        *
      - * Original author: Leighton Whiting - Released under GENERAL PUBLIC
      LICENSE 
      + * Original author: Leighton Whiting - Released under GENERAL PUBLIC
      LICENSE
        * Current maintenance by multiple MoneySuite users.
        * Re: new initiative: https://www.drupal.org/node/2315653
        */
      @@ -46,7 +46,7 @@ function ms_products_cron() {
             ms_products_change_purchase_status($purchase->id, 'expiring');
       
             $payment_vars = array(
      -        'purchase_id' => $purchase->id,
      +        'id' => $purchase->id,
             );
       
             // Send Expiring Soon Email.
      7614c7f4
  3. Dec 13, 2017
  4. Nov 28, 2017
  5. Sep 29, 2017
  6. Aug 29, 2017
  7. Aug 25, 2017
  8. Aug 18, 2017
  9. 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
  10. Feb 27, 2017
  11. Feb 24, 2017
  12. Oct 31, 2016
  13. Sep 15, 2016
  14. Jul 27, 2016
  15. 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
  16. May 26, 2016
  17. May 25, 2016
  18. Apr 07, 2016
  19. Mar 08, 2016
  20. Dec 27, 2015
  21. Dec 21, 2015
  22. Dec 17, 2015
  23. Dec 05, 2015
  24. Nov 30, 2015
  25. Nov 21, 2015
  26. Nov 20, 2015
  27. 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
  28. Nov 03, 2015
  29. Oct 19, 2015
  30. Oct 17, 2015
  31. Oct 14, 2015
  32. Oct 03, 2015
  33. Sep 25, 2015