summaryrefslogtreecommitdiff
path: root/httemplate/elements/mcp_lint.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/mcp_lint.html')
-rw-r--r--httemplate/elements/mcp_lint.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/elements/mcp_lint.html b/httemplate/elements/mcp_lint.html
index 826549c65..9e2b5cab6 100644
--- a/httemplate/elements/mcp_lint.html
+++ b/httemplate/elements/mcp_lint.html
@@ -1,5 +1,6 @@
% foreach my $lint (@lint) {
- <FONT COLOR="#FF0000"><% $lint %></FONT><BR>
+% my $color = ( $lint =~ /unchecked$/ ? '#FF9900' : '#FF0000' );
+ <FONT COLOR="<% $color %>"><% $lint %></FONT><BR>
% }
<%init>