Is "Card Type" not stored (outside of "debug mode") due to PCI guidelines?
This section of code from uc_credit.module (lines 264-283) seems to indicate so:
case 'save':
if ($arg1->payment_method == 'credit') {
// Build an array of CC data to store with the order.
if (!empty($arg1->payment_details)) {
// Check for debug mode.
if (variable_get('uc_credit_debug', FALSE) && arg(1) != 'checkout') {
// If enabled, store the full payment details.
$cc_data = $arg1->payment_details;
}
else {
// Otherwise, save only some limited, PCI compliant data.
$cc_data = array(
'cc_number' => substr($arg1->payment_details['cc_number'], -4),
);
}
_save_cc_data_to_order($cc_data, $arg1->order_id);
}
}
break;


