bugfix: tunnels: Missing AREDN footer on pages.

Add call to page_footer(); to pages
This commit is contained in:
Conrad Lara - KG6JEI 2015-05-10 14:38:03 -07:00
parent 994c4948d1
commit ea9638e787
2 changed files with 4 additions and 2 deletions

View File

@ -294,6 +294,7 @@ show_debug_info();
################# #################
# close the html # close the html
################# #################
page_footer();
print "</body></html>\n"; print "</body></html>\n";
exit; exit;
@ -486,4 +487,4 @@ sub DEBUGEXIT()
print $text; print $text;
print "</body>"; print "</body>";
exit; exit;
} }

View File

@ -275,6 +275,7 @@ show_debug_info();
################# #################
# close the html # close the html
################# #################
page_footer();
print "</body></html>\n"; print "</body></html>\n";
exit; exit;
@ -434,4 +435,4 @@ sub DEBUGEXIT()
print $text; print $text;
print "]</body>"; print "]</body>";
exit; exit;
} }