- add missing brace

git-svn-id: svn://10.0.0.236/trunk@201124 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ccooper%deadsquid.com 2006-06-28 19:10:41 +00:00
parent 60a6f92b34
commit 3ab5eb366c

View File

@ -37,7 +37,7 @@ function load_testgroups(selects) {
addNullEntry(groupbox);
// find the currently selected product that goes with this select
var productbox = document.getElementById("product"+groupbox.name.substr(9));
if (productbox.selectedIndex >= 0)
if (productbox.selectedIndex >= 0) {
var productid = productbox.options[productbox.selectedIndex].value;
var product = getProductById(productid);
if (!product) {