This is for Skipjack Module submitted bymcsem82 at 8 Nov 2007 ONLY!!!

My customer was never receiving error messages when cards were declined

----- Open file:
includes/modules/payment/skipjack.php

----- FIND:
function before_process() {
return false;
}

----- REPLACE WITH:
function before_process() {
global $HTTP_POST_VARS;

if ($HTTP_POST_VARS['szIsApproved'] != '1') {
if(isset($HTTP_POST_VARS['szAuthorizationDeclinedMessage']) && $HTTP_POST_VARS['szAuthorizationDeclinedMessage']!='')
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYME NT, 'error_message=' . urlencode($HTTP_POST_VARS['szAuthorizationDeclinedMessage']), 'SSL', true, false));
else
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYME NT, 'error_message=' . urlencode(MODULE_PAYMENT_SKIPJACK_TEXT_ERROR_MESSA GE), 'SSL', true, false));
}
}


P.S. Full Package has been attached.

More...