diff options
Diffstat (limited to 'min_selfservice/payment_finish.php')
-rw-r--r-- | min_selfservice/payment_finish.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/min_selfservice/payment_finish.php b/min_selfservice/payment_finish.php deleted file mode 100644 index 04fdfa6f3..000000000 --- a/min_selfservice/payment_finish.php +++ /dev/null @@ -1,34 +0,0 @@ -<? $title ='Payment Confirmation'; include('elements/header.php'); ?> -<? $current_menu = ''; include('elements/menu.php'); ?> -<? - $params = $_GET; - $params['session_id'] = $_COOKIE['session_id']; - - //print_r($params); - $payment_results = $freeside->finish_thirdparty($params); - - if ( isset($payment_results['error']) ) { - $error = $payment_results['error']; - include('elements/error.php'); - } else { -?> -<TABLE> - <TR> - <TH COLSPAN=2><FONT SIZE=+1><B>Your payment details</B></FONT></TH> - </TR> - <TR> -<TR> - <TD ALIGN="right">Payment #</TD> - <TD BGCOLOR="#ffffff"><B><? echo($payment_results['paynum']); ?></B></TD> -</TR> -<TR> - <TD ALIGN="right">Payment amount</TH> - <TD BGCOLOR="#ffffff"><B>$<? printf('%.2f', $payment_results['paid']); ?></B> - </TD> -</TR> -<TR> - <TD ALIGN="right">Processing #</TD> - <TD BGCOLOR="#ffffff"><B><? echo($payment_results['order_number']); ?></B> - </TD> -</TR> -<? } ?>
\ No newline at end of file |