diff options
author | terry%mozilla.org <> | 1999-10-07 03:37:37 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 1999-10-07 03:37:37 +0000 |
commit | d268cf28fb8befcc5038a2002ad2bd671b60d241 (patch) | |
tree | 11e720d8b4bf5ba43fe3409cf149754396fbe880 /editcomponents.cgi | |
parent | f9449010d7fa380286b74d088fa087ef2a92cb88 (diff) | |
download | bugs-d268cf28fb8befcc5038a2002ad2bd671b60d241.tar bugs-d268cf28fb8befcc5038a2002ad2bd671b60d241.tar.gz bugs-d268cf28fb8befcc5038a2002ad2bd671b60d241.tar.bz2 bugs-d268cf28fb8befcc5038a2002ad2bd671b60d241.tar.xz bugs-d268cf28fb8befcc5038a2002ad2bd671b60d241.zip |
Wow. Turns out this stuff would only handle 10 products. Did the
cheap fix that lets it handle 1000 products.
Diffstat (limited to 'editcomponents.cgi')
-rwxr-xr-x | editcomponents.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi index 1de259924..a7e1e660e 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -56,7 +56,7 @@ my $rowbreak = "<tr><td colspan=2><hr></td></tr>"; unlink "data/versioncache"; GetVersionTable(); -my $prodcode = "P0"; +my $prodcode = "P000"; foreach my $product (@::legal_product) { SendSQL("select description, milestoneurl, disallownew from products where product='$product'"); |