summaryrefslogtreecommitdiffstats
path: root/doeditparams.cgi
diff options
context:
space:
mode:
authorpreed%sigkill.com <>2003-07-16 18:16:16 +0200
committerpreed%sigkill.com <>2003-07-16 18:16:16 +0200
commitbc447ad3d358d188a7e8789430615186c8f04016 (patch)
tree609dce8f80c3102468b4f1ca32bd3ca171756f82 /doeditparams.cgi
parent26af2c5aff21cfd8afad900858240ed3465cab85 (diff)
downloadbugzilla-bc447ad3d358d188a7e8789430615186c8f04016.tar.gz
bugzilla-bc447ad3d358d188a7e8789430615186c8f04016.tar.xz
Bug 207206: doeditparams.cgi XHTML compatibility. Patch by jocuri@softhome.net, r=kiko, a=justdave
Diffstat (limited to 'doeditparams.cgi')
-rwxr-xr-xdoeditparams.cgi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doeditparams.cgi b/doeditparams.cgi
index cba06dd29..4abf1ccbf 100755
--- a/doeditparams.cgi
+++ b/doeditparams.cgi
@@ -40,7 +40,7 @@ my $cgi = Bugzilla->cgi;
print $cgi->header();
if (!UserInGroup("tweakparams")) {
- print "<H1>Sorry, you aren't a member of the 'tweakparams' group.</H1>\n";
+ print "<h1>Sorry, you aren't a member of the 'tweakparams' group.</h1>\n";
print "And so, you aren't allowed to edit the parameters.\n";
PutFooter();
exit;
@@ -95,7 +95,7 @@ foreach my $i (GetParamList()) {
exit;
}
}
- print "Changed " . html_quote($name) . "<br>\n";
+ print "Changed " . html_quote($name) . ".<br>\n";
SetParam($name, $value);
}
}
@@ -106,7 +106,7 @@ WriteParams();
unlink "data/versioncache";
print "OK, done.<p>\n";
-print "<a href=editparams.cgi>Edit the params some more.</a><p>\n";
-print "<a href=query.cgi>Go back to the query page.</a>\n";
+print "<a href=\"editparams.cgi\">Edit the params some more.</a><p>\n";
+print "<a href=\"query.cgi\">Go back to the query page.</a>\n";
PutFooter();