1
0
Fork 0

WebAdmin: Finish HTTP responses.

This commit is contained in:
Mattes D 2016-03-03 13:46:45 +01:00
parent c815d03eb4
commit 4bf2dd2d2b
1 changed files with 1 additions and 0 deletions

View File

@ -318,6 +318,7 @@ void cWebAdmin::HandleWebadminRequest(cHTTPServerConnection & a_Connection, cHTT
Resp.SetContentType("text/html");
a_Connection.Send(Resp);
a_Connection.Send(Template.c_str(), Template.length());
a_Connection.FinishResponse();
return;
}
a_Connection.SendStatusAndReason(500, "m_TemplateScript failed");