summaryrefslogtreecommitdiffstats
path: root/sanitycheck.cgi
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-06-28 09:18:02 +0200
committerbbaetz%student.usyd.edu.au <>2002-06-28 09:18:02 +0200
commitd5f30d8dfda359d6761d164d3c650adf1716213b (patch)
tree4f2ee142ba674fa30f1b0f45781ed935e3b405d5 /sanitycheck.cgi
parent0b729766ba6298c596b6f9e1e5452642306d5e3e (diff)
downloadbugzilla-d5f30d8dfda359d6761d164d3c650adf1716213b.tar.gz
bugzilla-d5f30d8dfda359d6761d164d3c650adf1716213b.tar.xz
Bug 148488 - more HTML validation fixes
r=jouni, gerv
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-xsanitycheck.cgi8
1 files changed, 4 insertions, 4 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi
index 4172e6b34..706d7dff5 100755
--- a/sanitycheck.cgi
+++ b/sanitycheck.cgi
@@ -55,17 +55,17 @@ my $offervotecacherebuild = 0;
sub Status {
my ($str) = (@_);
- print "$str <P>\n";
+ print "$str <p>\n";
}
sub Alert {
my ($str) = (@_);
- Status("<font color=red>$str</font>");
+ Status("<font color=\"red\">$str</font>");
}
sub BugLink {
my ($id) = (@_);
- return "<a href='show_bug.cgi?id=$id'>$id</a>";
+ return "<a href=\"show_bug.cgi?id=$id\">$id</a>";
}
sub AlertBadVoteCache {
@@ -142,7 +142,7 @@ if (exists $::FORM{'rebuildvotecache'}) {
Status("Vote cache has been rebuilt.");
}
-print "OK, now running sanity checks.<P>\n";
+print "OK, now running sanity checks.<p>\n";
# This one goes first, because if this is wrong, then the below tests
# will probably fail too