mirror of https://github.com/CGAL/cgal
Fix the test results page
There was the string `\n` in the HTML page, instead of a real newline.
This commit is contained in:
parent
e8b8c14c29
commit
6679bfa911
|
|
@ -103,7 +103,8 @@ sub write_select()
|
||||||
print OUTPUTV '<option value="', $_, '">';
|
print OUTPUTV '<option value="', $_, '">';
|
||||||
($filename) = m/results-(.*?)\.shtml\s*/;
|
($filename) = m/results-(.*?)\.shtml\s*/;
|
||||||
# printf OUTPUTV "%-20s (last modified: %s)</option>\n", $filename, $date;
|
# 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>";
|
print OUTPUTV "</select></td>";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue