added a mark for each graph in the html

This commit is contained in:
Jordi Sanfeliu 2013-07-10 18:46:45 +02:00
parent b34c243eb2
commit dfb67dec01
1 changed files with 2 additions and 0 deletions

View File

@ -169,6 +169,7 @@ sub multihost {
sub graph_header {
my ($title, $colspan) = @_;
print("\n");
print("<!-- graph table begins -->\n");
print(" <table cellspacing='5' cellpadding='0' width='1' bgcolor='$colors{graph_bg_color}' border='1'>\n");
print(" <tr>\n");
print(" <td bgcolor='$colors{title_bg_color}' colspan='$colspan'>\n");
@ -181,6 +182,7 @@ sub graph_header {
sub graph_footer {
print(" </table>\n");
print("<!-- graph table ends -->\n");
}