Bug 239018 show date in addition to time at top of tinderbox page

patch by Constantine A. Murenin <cnst+moz@bugmail.mojo.ru> r=mcafee
This commit is contained in:
cbiesinger%web.de 2004-07-18 18:13:02 +00:00
Родитель 211bc9b439
Коммит 2ae58d3226
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -182,8 +182,8 @@ sub print_page_head {
print "Content-type: text/html\n\n<HTML>\n" unless $form{static};
use POSIX qw(strftime);
# Print time in format, "HH:MM timezone"
my $now = strftime("%H:%M %Z", localtime);
# Print time in format "YYYY-MM-DD HH:MM timezone"
my $now = strftime("%Y-%m-%d %H:%M %Z", localtime);
EmitHtmlTitleAndHeader("tinderbox: $::tree", "tinderbox",
"tree: $::tree ($now)");