Renamed some variables
authorRoland Häder <roland@mxchange.org>
Mon, 27 Sep 2010 15:47:05 +0000 (15:47 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 27 Sep 2010 15:47:05 +0000 (15:47 +0000)
inc/modules/member/what-transfer.php

index 3c6d3e1c1bebec10f1d10f32dd3a02fdafef47dc..20f4a93d3be274ab5ae9479d1f4a35e3773d40fd 100644 (file)
@@ -448,23 +448,23 @@ KEY (`party_userid`)
 
        default: // Overview page
                // Check incoming transfers
-               $total = countSumTotalData(getMemberId(), 'user_transfers_in', 'id', 'userid', true);
-               $content['in_link'] = $total;
-               if ($total > 0) {
-                       $content['in_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_in%}">' . $total . '</a>';
+               $totalIn = countSumTotalData(getMemberId(), 'user_transfers_in', 'id', 'userid', true);
+               $content['in_link'] = $totalIn;
+               if ($totalIn > 0) {
+                       $content['in_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_in%}">' . $totalIn . '</a>';
                } // END - if
 
                // Check outgoing transfers
-               $dmy = countSumTotalData(getMemberId(), 'user_transfers_out', 'id', 'userid', true);
-
-               // Add to total amount
-               $total += $dmy;
+               $totalOut = countSumTotalData(getMemberId(), 'user_transfers_out', 'id', 'userid', true);
 
-               $content['out_link'] = $dmy;
-               if ($dmy > 0) {
-                       $content['out_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_out%}">' . $dmy . '</a>';
+               $content['out_link'] = $totalOut;
+               if ($totalOut > 0) {
+                       $content['out_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_out%}">' . $totalOut . '</a>';
                } // END - if
 
+               // Add to total amount
+               $total += $totalOut;
+
                // Total transactions
                $content['all_link'] = $total;
                if ($total > 0) {
@@ -505,12 +505,12 @@ KEY (`party_userid`)
 FROM
        `{?_MYSQL_PREFIX?}_user_transfers_out`
 WHERE
-       `time_trans` > (UNIX_TIMESTAMP() - %s) AND `userid`=%s
+       `time_trans` > (UNIX_TIMESTAMP() - {?transfer_timeout?}) AND
+       `userid`=%s
 ORDER BY
        `time_trans` DESC
 LIMIT 1",
                        array(
-                               getConfig('transfer_timeout'),
                                getMemberId()
                        ), __FILE__, __LINE__);