From 92cf21a89a402437a313322fea326e873a012e99 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 25 Nov 2005 06:12:59 +0000 Subject: [PATCH] r594: strtolower() $type in construct_option_list() --- admin/product.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/product.php b/admin/product.php index 852d766..c0d3350 100755 --- a/admin/product.php +++ b/admin/product.php @@ -23,7 +23,7 @@ function construct_option_list($type, $id, $edit, $addcomponent, $addversion, $d global $bugsys; $type_display = $type; - $type = (($type == 'component') ? 'product' : $type); + $type = strtolower((($type == 'component') ? 'product' : $type)); $type_action = (($type == 'version') ? 'versionid' : 'productid'); if ($edit) -- 2.22.5