X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Forder.php;h=68509930dbf9633d25a8fa1653d185468dc545da;hb=c9a5bbe818b2dbcf8e8d5774fb25f08c40c92bd8;hp=484ba98daff96555d28ba2feef79bbd101586848;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341;p=mailer.git diff --git a/inc/modules/order.php b/inc/modules/order.php index 484ba98daf..68509930db 100644 --- a/inc/modules/order.php +++ b/inc/modules/order.php @@ -77,7 +77,7 @@ if (empty($url)) { if (!SQL_HASZEROAFFECTED()) { // @TODO Unused: 2,4 // Load mail again... 0 1 2 3 4 5 6 7 - $result = SQL_QUERY_ESC("SELECT `subject`,`text`,`receivers`,`payment_id`,`timestamp`,`url`,`cat_id`,`target_send` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s AND `sender`=%s LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `subject`, `text`, `receivers`, `payment_id`, `timestamp`, `url`, `cat_id`, `target_send` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s AND `sender`=%s LIMIT 1", array( bigintval(getRequestElement('order')), getMemberId() @@ -91,11 +91,11 @@ if (empty($url)) { // Fix empty subject line if (empty($content['subject'])) { - $content['subject'] = '{--DEFAULT_SUBJECT_LINE--}'; + $content['subject'] = '{--DEFAULT_SUBJECT--}'; } // END - if // Calculate used points - $content['payed_points'] = $content['target_send'] * getPaymentPoints($content['payment_id']); + $content['payed_points'] = $content['target_send'] * getPaymentData($content['payment_id']); // Subtract them from the user's account and ignore return status subtractPoints('order', getMemberId(), $content['payed_points']);