From: preed%sigkill.com <> Date: Wed, 16 Jul 2003 16:16:16 +0000 (+0000) Subject: Bug 207206: doeditparams.cgi XHTML compatibility. Patch by jocuri@softhome.net, r... X-Git-Tag: bugzilla-2.17.5~108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc447ad3d358d188a7e8789430615186c8f04016;p=thirdparty%2Fbugzilla.git Bug 207206: doeditparams.cgi XHTML compatibility. Patch by jocuri@softhome.net, r=kiko, a=justdave --- diff --git a/doeditparams.cgi b/doeditparams.cgi index cba06dd295..4abf1ccbf3 100755 --- a/doeditparams.cgi +++ b/doeditparams.cgi @@ -40,7 +40,7 @@ my $cgi = Bugzilla->cgi; print $cgi->header(); if (!UserInGroup("tweakparams")) { - print "

Sorry, you aren't a member of the 'tweakparams' group.

\n"; + print "

Sorry, you aren't a member of the 'tweakparams' group.

\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) . "
\n"; + print "Changed " . html_quote($name) . ".
\n"; SetParam($name, $value); } } @@ -106,7 +106,7 @@ WriteParams(); unlink "data/versioncache"; print "OK, done.

\n"; -print "Edit the params some more.

\n"; -print "Go back to the query page.\n"; +print "Edit the params some more.

\n"; +print "Go back to the query page.\n"; PutFooter();