diff options
-rw-r--r-- | httemplate/elements/dashboard-toplist.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/elements/dashboard-toplist.html b/httemplate/elements/dashboard-toplist.html index 6276f9fd3..b0ee8c8a3 100644 --- a/httemplate/elements/dashboard-toplist.html +++ b/httemplate/elements/dashboard-toplist.html @@ -62,7 +62,7 @@ <TD CLASS="grid" COLSPAN="<% scalar(@custom_priorities) + 2 %>" BGCOLOR="<% $bgcolor %>"> </TD> </TR> -% } else { #label line +% } elsif ( $line =~ /^\S/ { #label line <TR> <TH CLASS="grid" BGCOLOR="#cccccc"><% $line %></TH> @@ -73,6 +73,12 @@ % } </TR> +% } else { #regular line + + <TR> + <TD CLASS="grid" COLSPAN="<% scalar(@custom_priorities) + 2 %>" BGCOLOR="<% $bgcolor %>"><% $line %></TD> + </TR> + % } % |