Index: signup_pay.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/signup_pay/signup_pay.module,v retrieving revision 1.2.2.19 diff -u -r1.2.2.19 signup_pay.module --- signup_pay.module 24 Jun 2008 00:22:09 -0000 1.2.2.19 +++ signup_pay.module 3 Aug 2008 22:00:00 -0000 @@ -611,18 +611,18 @@ $custom[$key] = $value; } - $time_paid = check_plain(strtotime($_POST['payment_date'])); - $name = check_plain($_POST['first_name'] .' '. $_POST['last_name'] . ($_POST['payer_business_name'] ? ' ('. $_POST['payer_business_name'] .')' : '')); - $gross_amount = check_plain((float)$_POST['mc_gross']); - $net_amount = check_plain((float)$_POST['mc_gross'] - (float)$_POST['mc_fee']); + $time_paid = strtotime($_POST['payment_date']); + $name = $_POST['first_name'] .' '. $_POST['last_name'] . ($_POST['payer_business_name'] ? ' ('. $_POST['payer_business_name'] .')' : ''); + $gross_amount = (float)$_POST['mc_gross']; + $net_amount = (float)$_POST['mc_gross'] - (float)$_POST['mc_fee']; //TODO test emails and display a message indicating these emails are not the same if (!$custom['mail']) { - $mail = check_plain($_POST['payer_email']); + $mail = $_POST['payer_email']; } else { $mail = $custom['mail']; } - $currency = check_plain($_POST['mc_currency']); + $currency = $_POST['mc_currency']; db_query("INSERT INTO {signup_pay} (id, uid, nid, method_id, time_paid, name, mail, currency, net_amount, amount) VALUES (0, %d, %d, %d, %d, '%s', '%s', '%s', %f, %f)", (int)$custom['uid'],