Skip to content
Snippets Groups Projects
Commit b4729d30 authored by Jared Hancock's avatar Jared Hancock
Browse files

oops: Fix bad merge reverting time-dropdown

parent 6da668f2
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ class Misc {
$sel=($hr==$i && $min==$minute)?'selected="selected"':'';
$_minute=str_pad($minute, 2, '0',STR_PAD_LEFT);
$_hour=str_pad($i, 2, '0',STR_PAD_LEFT);
$disp = date($format, $i*3600 + $minute*60);
$disp = gmdate($format, $i*3600 + $minute*60);
echo sprintf('<option value="%s:%s" %s>%s</option>',$_hour,$_minute,$sel,$disp);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment