--- uc_coupon.module.orig	2010-06-02 00:40:28.000000000 -0400
+++ uc_coupon.module	2010-06-02 00:40:45.000000000 -0400
@@ -133,8 +133,6 @@ function uc_coupon_perm() {
  *   pass in an argument to filter out active/inactive coupons
  */
 function uc_coupon_display($view_type = 'active') {
-  _uc_coupon_paypal_check();
-
   $header[] = array('data' => t('Name'), 'field' => 'name');
   $header[] = array('data' => t('Code'), 'field' => 'code', 'sort' => 'asc');
   $header[] = array('data' => t('Value'), 'field' => 'value');
@@ -185,8 +183,6 @@ function uc_coupon_display($view_type = 
  * Coupon, used to load defaults when $action = 'edit'
  */
 function uc_coupon_add_form($form_state, $action, $coupon = NULL) {
-  _uc_coupon_paypal_check();
-
   if ($action == 'edit') {
     $value = $coupon;
     $used = db_result(db_query("SELECT COUNT(*) FROM {uc_coupons_orders} WHERE cid = %d", $value->cid));
@@ -1241,12 +1237,3 @@ function uc_coupon_reports($start = NULL
   }
   return $output;
 }
-
-/**
- * Show a message if PayPal is enabled and "itemized order" is selected.
- */
-function _uc_coupon_paypal_check() {
-  if (variable_get('uc_payment_method_paypal_wps_checkout', 0) && variable_get('uc_paypal_wbs_submit_method', 'single') == 'itemized') {
-    drupal_set_message(t('To use coupons with PayPal you must select "Submit the whole order as a single line item". Click <a href="!url">here</a> to change this setting.', array('!url' => url('admin/store/settings/payment/edit/methods'))));
-  }
-}
