Tidy up "services_dhcp_relay" XHTML

Move closing BODY and closing HTML tags after the PHP FEND.INC statement
This commit is contained in:
Colin Fleming 2014-05-18 14:46:26 +01:00
parent 024068017f
commit 905bafa1e8
2 changed files with 4 additions and 4 deletions

View File

@ -136,9 +136,9 @@ function enable_change(enable_over) {
<?php
if ($dhcpd_enabled) {
echo "<td>DHCP Server is currently enabled. Cannot enable the DHCP Relay service while the DHCP Server is enabled on any interface.";
echo "</td></tr></table></div></td></tr></table></form></body>";
echo "</html>";
echo "</td></tr></table></div></td></tr></table></form>";
include("fend.inc");
echo "</body></html>";
exit;
}
?>

View File

@ -137,9 +137,9 @@ function enable_change(enable_over) {
<?php
if ($dhcpd_enabled) {
echo "<td>DHCPv6 Server is currently enabled. Cannot enable the DHCPv6 Relay service while the DHCPv6 Server is enabled on any interface.";
echo "</td></tr></table></div></td></tr></table></form></body>";
echo "</html>";
echo "</td></tr></table></div></td></tr></table></form>";
include("fend.inc");
echo "</body></html>";
exit;
}
?>