From 8dacf50fec96d21a962a8cb9b28c6a2c699dc0f0 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 3 Dec 2005 03:25:31 +0000 Subject: [PATCH] r606: Use sprintf() instead of concat --- admin/product.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/product.php b/admin/product.php index 288c90d..695e0c6 100755 --- a/admin/product.php +++ b/admin/product.php @@ -28,12 +28,12 @@ function construct_option_list($type, $id, $edit, $addcomponent, $addversion, $d if ($edit) { - $opt .= ''; + $opt .= ''; } if ($delete) { - $opt .= ''; + $opt .= ''; } if ($addcomponent) -- 2.22.5