From 89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Sat, 21 Nov 1998 03:18:33 +0000 Subject: Backed out Andrew's patch -- turns out it was doing quoting sublty wrong. --- editowners.cgi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'editowners.cgi') diff --git a/editowners.cgi b/editowners.cgi index 647bdeda0..1bfb6ac13 100755 --- a/editowners.cgi +++ b/editowners.cgi @@ -44,9 +44,9 @@ PutHeader("Edit Component Owners"); print "This lets you edit the owners of the program components of bugzilla.\n"; -print "
\n\n"; +print "
\n"; -my $rowbreak = ""; +my $rowbreak = ""; SendSQL("select program, value, initialowner from components order by program, value"); @@ -56,17 +56,17 @@ my $curProgram = ""; while (@line = FetchSQLData()) { if ($line[0] ne $curProgram) { print $rowbreak; - print "\n"; + print "\n"; $curProgram = $line[0]; } - print "\n"; } print "


$line[0]:
$line[0]:
$line[1]$line[1]
\n"; -print "\n"; +print "\n"; print "
\n"; -print "

Skip all this, and go back to the query page\n"; +print "

Skip all this, and go back to the query page\n"; -- cgit v1.2.3-24-g4f1b