Webconsole: fix Transports lists

This commit is contained in:
Anon2026
2026-02-10 21:27:15 +03:00
parent 231e0b8fa7
commit 6ac52c0bbc
+8 -2
View File
@@ -979,7 +979,10 @@ namespace http {
<< "</b> ( " << cnt << " )</label>\r\n"
<< "<input type=\"checkbox\" id=\"slide_" << boost::algorithm::to_lower_copy(name) << "\" />\r\n"
<< "<div class=\"slidecontent list\">\r\n\r\n"
<< tmp_s.str () << "</div>\r\n<br>\r\n</div>\r\n";
<< tmp_s.str ()
<< "<div class=\"listitem\">\r\n"
<< "&nbsp; </div>\r\n" << std::endl
<< "</div>\r\n</div>\r\n\r\n";
}
if (!tmp_s6.str ().empty ())
{
@@ -987,7 +990,10 @@ namespace http {
<< "v6</b> ( " << cnt6 << " )</label>\r\n"
<< "<input type=\"checkbox\" id=\"slide_" << boost::algorithm::to_lower_copy(name) << "v6\" />\r\n"
<< "<div class=\"slidecontent list\">\r\n\r\n"
<< tmp_s6.str () << "</div>\r\n<br>\r\n</div>\r\n";
<< tmp_s6.str ()
<< "<div class=\"listitem\">\r\n"
<< "&nbsp; </div>\r\n" << std::endl
<< "</div>\r\n</div>\r\n\r\n";
}
}