https://bz.apache.org/bugzilla/show_bug.cgi?id=64754
Bug ID: 64754
Summary: balance-manager app produces malformed HTML -- missing
</tr>
Product: Apache httpd-2
Version: 2.5-HEAD
Hardware: PC
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: mod_proxy_balancer
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
The balance-manager internal application is missing a "</tr>" before a
"</table>" around line 1650. Trunk currently has
ap_rprintf(r, "<td>%s</td>\n",
!balancer->s->inactive ? "Yes" : "No");
ap_rputs("</table>\n<br />", r);
I'd suggest adding the "</tr>" either like this:
ap_rprintf(r, "<td>%s</td>\n",
!balancer->s->inactive ? "Yes" : "No");
ap_rputs("</tr>\n</table>\n<br />", r);
or like this:
ap_rprintf(r, "<td>%s</td>\n</tr>\n",
!balancer->s->inactive ? "Yes" : "No");
ap_rputs("</table>\n<br />", r);
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]