Fix the test results page

There was the string `\n` in the HTML page, instead of a real newline.
This commit is contained in:
Laurent Rineau 2019-03-20 10:43:25 +01:00
parent e8b8c14c29
commit 6679bfa911
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ sub write_select()
print OUTPUTV '<option value="', $_, '">';
($filename) = m/results-(.*?)\.shtml\s*/;
# printf OUTPUTV "%-20s (last modified: %s)</option>\n", $filename, $date;
printf OUTPUTV '%2$s: %1$s</option>\n', $filename, $date;
printf OUTPUTV '%2$s: %1$s</option>
', $filename, $date;
}
print OUTPUTV "</select></td>";
}