Index: lm_paypal.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/lm_paypal/lm_paypal.module,v
retrieving revision 1.23
retrieving revision 1.24
diff -c -r1.23 -r1.24
*** lm_paypal.module	8 Oct 2006 20:51:08 -0000	1.23
--- lm_paypal.module	13 Dec 2006 12:00:09 -0000	1.24
***************
*** 1,6 ****
  <?php
  
! // $Id: lm_paypal.module,v 1.23 2006/10/08 20:51:08 leemcl Exp $
  
  /**
   * @file
--- 1,6 ----
  <?php
  
! // $Id: lm_paypal.module,v 1.24 2006/12/13 12:00:09 leemcl Exp $
  
  /**
   * @file
***************
*** 491,499 ****
    global $_lm_paypal_debug;
    global $_lm_paypal_host;
  
!   // Don't bother with these fields
    $ignore_fields = array(
     'notify_version',
     'charset',
    );
    // These fields, if present, should be saved in the ipn log
--- 491,500 ----
    global $_lm_paypal_debug;
    global $_lm_paypal_host;
  
!   // Don't bother with these fields - but don't flag them as errors
    $ignore_fields = array(
     'notify_version',
+    'receipt_id',
     'charset',
    );
    // These fields, if present, should be saved in the ipn log
***************
*** 583,589 ****
        $sql .= "'" . db_escape_string($value) . "'";
      }
      else {
!       watchdog(LM_PAYPAL, t('IPN unknown field ignored: %key => $value', array('%key' => check_plain($key), '%value' => check_plain($value))));
      }
    }
  
--- 584,590 ----
        $sql .= "'" . db_escape_string($value) . "'";
      }
      else {
!       watchdog(LM_PAYPAL, t('IPN unknown field ignored: %key => %value', array('%key' => check_plain($key), '%value' => check_plain($value))));
      }
    }
  
