diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-02-20 23:00:29 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-02-20 23:00:36 +0100 |
| commit | c4b77302c8a33d9dd1d0a93b20a4ab3a1a3e1e54 (patch) | |
| tree | b9dc7e0c46c79e484ce5c329c6d16bb2a96cf750 /src | |
| parent | e741c3ff8270189f294ef8f6a849a0fa7fcc995a (diff) | |
Add some missing </li> tags.v1.10.11
Diffstat (limited to 'src')
| -rw-r--r-- | src/verify_report.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verify_report.h b/src/verify_report.h index 98431102..a9ec1155 100644 --- a/src/verify_report.h +++ b/src/verify_report.h @@ -201,9 +201,9 @@ public: void list_item(std::string const& text, boost::optional<std::string> type = {}) override { if (type) { - _file.puts(dcp::String::compose("<li class=\"%1\">%2", *type, text).c_str()); + _file.puts(dcp::String::compose("<li class=\"%1\">%2</li>", *type, text).c_str()); } else { - _file.puts(dcp::String::compose("<li>%1", text).c_str()); + _file.puts(dcp::String::compose("<li>%1</li>", text).c_str()); } } |
