X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/89d002baaa196b21ac4d4072e21e7451c47a2355..95433dc6baab9cc71f2a8b7a139bd0e6f6505b70:/lib/functions.php?ds=inline diff --git a/lib/functions.php b/lib/functions.php index 85651ba..50ab345 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -120,6 +120,14 @@ function jirafeau_human_size($octets) return round($o, 1) . $u[$p]; } +// Convert UTC timestamp to a datetime field +function jirafeau_get_datetimefield($timestamp) +{ + $content = '' + . strftime('%Y-%m-%d %H:%M', $timestamp) . ' (GMT)'; + return $content; +} + function jirafeau_clean_rm_link($link) { $p = s2p("$link"); @@ -594,13 +602,12 @@ function jirafeau_admin_list($name, $file_hash, $link_hash) /* Print link informations. */ echo ''; echo '' . - '' . htmlspecialchars($l['file_name']) . ''; echo ''; echo '' . $l['mime_type'] . ''; echo '' . jirafeau_human_size($l['file_size']) . ''; - echo '' . ($l['time'] == -1 ? '' : strftime('%c', $l['time'])) . - ''; + echo '' . ($l['time'] == -1 ? '∞' : jirafeau_get_datetimefield($l['time'])) . ''; echo ''; if ($l['onetime'] == 'O') { echo 'Y'; @@ -608,7 +615,7 @@ function jirafeau_admin_list($name, $file_hash, $link_hash) echo 'N'; } echo ''; - echo '' . strftime('%c', $l['upload_date']) . ''; + echo '' . jirafeau_get_datetimefield($l['upload_date']) . ''; echo '' . $l['ip'] . ''; echo '' . '
' . @@ -1109,7 +1116,7 @@ function jirafeau_challenge_upload ($cfg, $ip, $password) if (!jirafeau_has_upload_password($cfg)) { return false; } - + foreach ($cfg['upload_password'] as $p) { if ($password == $p) { return true;