Changeset 878
- Timestamp:
- 07/10/08 09:41:09 (2 months ago)
- Files:
-
- trunk/customer/checkout_process.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/customer/checkout_process.php
r715 r878 154 154 $messagetext = str_replace('$paymentgateway', $transaction_data[0][4], $messagetext); 155 155 $messagetext = str_replace('$amount', $amount_paid.$currCurrency, $messagetext); 156 // Add Post information / useful to track down payment transaction without having to log 157 $messagetext .= "\n\n\n\n"."-POST Var \n".print_r($_POST, true); 156 158 157 159 // USE PHPMAILER … … 351 353 $messagetext = str_replace('$paymentMethod', $pmodule, $messagetext); 352 354 $messagetext = str_replace('$paymentStatus', $statusmessage, $messagetext); 355 // Add Post information / useful to track down payment transaction without having to log 356 $messagetext .= "\n\n\n\n"."-POST Var \n".print_r($_POST, true); 353 357 354 358 a2b_mail (ADMIN_EMAIL, $subject, $messagetext, $from, $fromname); … … 378 382 write_log(LOGFILE_EPAYMENT, basename(__FILE__).' line:'.__LINE__."-transactionID=$transactionID"." EPAYMENT ORDER STATUS ID = ".$orderStatus." ".$statusmessage); 379 383 write_log(LOGFILE_EPAYMENT, basename(__FILE__).' line:'.__LINE__."-transactionID=$transactionID"." ----EPAYMENT TRANSACTION END----"); 384 385
