]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_transfer.php
Now debug_report_bug() will be called if ext_name or ext_ver is empty which should...
[mailer.git] / inc / modules / admin / what-list_transfer.php
index 7062faf6614e5337afeb42385099826e3ddc4667..dd2a3cdf92e3a3c1ed820432443958f49b21271c 100644 (file)
@@ -38,7 +38,7 @@
 
 // Some security stuff...
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
@@ -57,11 +57,11 @@ if (SQL_NUMROWS($result) > 0)
                $content = array(
                        'sw'        => $SW,
                        'idx'       => $content['trans_id'],
-                       'stamp'     => MAKE_DATETIME($content['time_trans'], "3"),
-                       'from_link' => ADMIN_USER_PROFILE_LINK($content['userid']),
-                       'to_link'   => ADMIN_USER_PROFILE_LINK($content['to_uid']),
+                       'stamp'     => generateDateTime($content['time_trans'], '3'),
+                       'from_link' => generateUserProfileLink($content['userid']),
+                       'to_link'   => generateUserProfileLink($content['to_uid']),
                        'reason'    => wordwrap($content['reason'], 15),
-                       'points'    => TRANSLATE_COMMA($content['points']),
+                       'points'    => translateComma($content['points']),
                );
 
                // Load row template add points and switch color
@@ -72,7 +72,7 @@ if (SQL_NUMROWS($result) > 0)
        // Free memory
        SQL_FREERESULT($result);
 }
- else
+else
 {
        // Nothing for in and out
        $OUT = "<tr>
@@ -87,7 +87,7 @@ if (SQL_NUMROWS($result) > 0)
 define('__TRANSFER_ROWS', $OUT);
 
 // Remeber total amount
-define('__TRANSFER_TOTAL_VALUE', TRANSLATE_COMMA($total));
+define('__TRANSFER_TOTAL_VALUE', translateComma($total));
 
 // Set title
 define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL'));