From d3e353e69baa4ced52271f08b6aef025765a1f99 Mon Sep 17 00:00:00 2001 From: "preed%sigkill.com" Date: Wed, 16 Jul 2003 09:16:16 +0000 Subject: [PATCH] Bug 207206: doeditparams.cgi XHTML compatibility. Patch by jocuri@softhome.net, r=kiko, a=justdave git-svn-id: svn://10.0.0.236/trunk@144898 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/doeditparams.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/webtools/bugzilla/doeditparams.cgi b/mozilla/webtools/bugzilla/doeditparams.cgi index cba06dd295f..4abf1ccbf3a 100755 --- a/mozilla/webtools/bugzilla/doeditparams.cgi +++ b/mozilla/webtools/bugzilla/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();