From 0ca30382be83fccfc4e352096c87c56bbf8a673c Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Tue, 17 Nov 1998 03:43:49 +0000 Subject: Patch by Andrew Anderson . Many minor bugfixes and cleanup. --- editowners.cgi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'editowners.cgi') diff --git a/editowners.cgi b/editowners.cgi index 1bfb6ac13..647bdeda0 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"; +print "\n
\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