diff options
author | terry%mozilla.org <> | 1999-07-27 03:41:54 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 1999-07-27 03:41:54 +0000 |
commit | 9b2a5338b3ca653fb80258d735f095888d96ac73 (patch) | |
tree | b82dac69ad5cf6d01759ca7fff8da2732ec2e428 | |
parent | ac6a300ac8cfea79b50beb0da295ab4cef080973 (diff) | |
download | bugs-9b2a5338b3ca653fb80258d735f095888d96ac73.tar bugs-9b2a5338b3ca653fb80258d735f095888d96ac73.tar.gz bugs-9b2a5338b3ca653fb80258d735f095888d96ac73.tar.bz2 bugs-9b2a5338b3ca653fb80258d735f095888d96ac73.tar.xz bugs-9b2a5338b3ca653fb80258d735f095888d96ac73.zip |
Get rid of extra semicolons.
-rwxr-xr-x | showowners.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/showowners.cgi b/showowners.cgi index dee819bee..b0926e473 100755 --- a/showowners.cgi +++ b/showowners.cgi @@ -83,11 +83,11 @@ foreach $person (@list) { my $qperson = SqlQuote($person); SendSQL("select program,value from components\ - where initialowner = $qperson order by program,value;"); + where initialowner = $qperson order by program,value"); $firstcell = FetchAndFormat(); SendSQL("select program,value from components\ - where initialqacontact = $qperson order by program,value;"); + where initialqacontact = $qperson order by program,value"); $secondcell = FetchAndFormat(); $_ = $person; # Anti-spam |