Can you explain why this was done when the code explicitly
states that it should be GMT?
if ( $timeformat eq 'GMT' ) {
# Create an ISO formatted GMT date
my @t = gmtime $epoch;
$t[4] += 1;
$t[5] += 1900;
@t[0..4] = map { sprintf '%02d', $_ } @t[0..4];
return "$t[5]/$t[4]/$t[3] $t[2]:$t[1]:$t[0] GMT";
Have I missed something? If so, this might not be the root
source of the problem.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=153576
Can you explain why this was done when the code explicitly
states that it should be GMT?
if ( $timeformat eq 'GMT' ) {
# Create an ISO formatted GMT date
my @t = gmtime $epoch;
$t[4] += 1;
$t[5] += 1900;
@t[0..4] = map { sprintf '%02d', $_ } @t[0..4];
return "$t[5]/$t[4]/$t[3] $t[2]:$t[1]:$t[0] GMT";
Have I missed something? If so, this might not be the root
source of the problem.