Closed
Bug 36597
Opened 25 years ago
Closed 24 years ago
Selected module printed twice
Categories
(Webtools Graveyard :: Bonsai, enhancement, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: miri, Assigned: tara)
Details
I don't know if it's an issue or it's wittingly, but if you go to
cvsqueryform.cgi page with module=<something>, it prints the module twice in the
listbox.
This fixes it (although not much):
--- /home/mozilla/webtools/bonsai/cvsqueryform.cgi Tue Nov 2 00:32:49 1999
+++ cvsqueryform.cgi Fri Apr 21 00:18:02 2000
@@ -103,6 +103,7 @@
# Print out all the Different Modules
#
for my $k (sort( keys( %$::modules ) ) ){
+ if ($k eq $::FORM{module}) { next; }
print "<OPTION value='$k'>$k\n";
}
| Assignee | ||
Comment 1•24 years ago
|
||
Verified bug, verified patch and checked in.
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
vrfy fixed
1.13 tara@tequilarista.org Oct 30 2001
and by code inspection, the if/else block before it necessitates this
Status: RESOLVED → VERIFIED
Updated•9 years ago
|
Product: Webtools → Webtools Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•