]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-unconfirmed.php
Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / member / what-unconfirmed.php
index 16e247338a201aa782239a91d7ecb5a92a5b54de..1da948a63c2c92ca0e4bac219464bded1e700596 100644 (file)
@@ -94,20 +94,27 @@ LIMIT 1",
 } elseif (isGetRequestElementSet('mailid')) {
        // Display regular member mail by loading its full data
        $result_data = SQL_QUERY_ESC("SELECT
-       s.id, s.subject, p.text, s.timestamp_ordered AS `timestamp`,
-       s.cat_id, pay.price AS `points`, p.sender, pay.time, p.data_type
+       s.`id`,
+       s.`subject`,
+       p.`text`,
+       s.`timestamp_ordered` AS `timestamp`,
+       s.`cat_id`,
+       pay.`price` AS `points`,
+       p.`sender`,
+       pay.`time`,
+       p.`data_type`
 FROM
-       `{?_MYSQL_PREFIX?}_user_stats` AS s
+       `{?_MYSQL_PREFIX?}_user_stats` AS `s`
 LEFT JOIN
-       `{?_MYSQL_PREFIX?}_pool` AS p
+       `{?_MYSQL_PREFIX?}_pool` AS `p`
 ON
        s.pool_id=p.id
 LEFT JOIN
-       `{?_MYSQL_PREFIX?}_payments` AS pay
+       `{?_MYSQL_PREFIX?}_payments` AS `pay`
 ON
-       p.payment_id=pay.id
+       p.`payment_id`=pay.`id`
 WHERE
-       s.id=%s
+       s.`id`=%s
 LIMIT 1",
                array(bigintval(getRequestElement('mailid'))), __FILE__, __LINE__);