X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=bb42974a020a0bbe4da7942657d0925c21d9fb09;hb=5b794a32b30ec5322765c89a22c4c27aece94a42;hp=a8458870004dffe3eee2cf9932b9183801759d67;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index a845887000..bb42974a02 100644 --- a/inc/modules/admin/what-list_transfer.php +++ b/inc/modules/admin/what-list_transfer.php @@ -46,7 +46,7 @@ addMenuDescription('admin', __FILE__); // We only need outgoing transfers $result = SQL_QUERY("SELECT userid, to_userid, trans_id, points, reason, time_trans FROM `{?_MYSQL_PREFIX?}_user_transfers_out` ORDER BY trans_id", __FILE__, __LINE__); -$total = 0; +$total = '0'; if (SQL_NUMROWS($result) > 0) { // Output rows $OUT = ''; $SW = 2; @@ -55,7 +55,7 @@ if (SQL_NUMROWS($result) > 0) { $content = array( 'sw' => $SW, 'trans_id' => $content['trans_id'], - 'stamp' => generateDateTime($content['time_trans'], '3'), + 'stamp' => generateDateTime($content['time_trans'], 3), 'from_link' => generateUserProfileLink($content['userid']), 'to_link' => generateUserProfileLink($content['to_userid']), 'reason' => wordwrap($content['reason'], 15),