diff --git a/payment/uc_credit/uc_credit.pages.inc b/payment/uc_credit/uc_credit.pages.inc index 40964b4..818dcfb 100644 --- a/payment/uc_credit/uc_credit.pages.inc +++ b/payment/uc_credit/uc_credit.pages.inc @@ -9,7 +9,10 @@ * Prints the contents of the CVV information popup window. */ function uc_credit_cvv_info() { - $output = '' . t('What is the CVV?') . '

' . t('CVV stands for Card Verification Value. This number is used as a security feature to protect you from credit card fraud. Finding the number on your card is a very simple process. Just follow the directions below.') . '

'; + $output = "\n"; + $output .= ''; + + $output .= '' . t('What is the CVV?') . '

' . t('CVV stands for Card Verification Value. This number is used as a security feature to protect you from credit card fraud. Finding the number on your card is a very simple process. Just follow the directions below.') . '

'; $cc_types = array( 'visa' => t('Visa'), 'mastercard' => t('MasterCard'), @@ -43,6 +46,8 @@ function uc_credit_cvv_info() { $output .= '

'; + $output .= ''; + print $output; exit(); }