diff --git a/lib/shop.lib.php b/lib/shop.lib.php
index e06d6785c..e0dad79a5 100644
--- a/lib/shop.lib.php
+++ b/lib/shop.lib.php
@@ -737,16 +737,16 @@ function it_name_icon($it, $it_name="", $url=1)
if ($url)
$str = "$str";
- if ($it[it_type1]) $str .= "
";
- if ($it[it_type2]) $str .= "
";
- if ($it[it_type3]) $str .= "
";
- if ($it[it_type4]) $str .= "
";
- if ($it[it_type5]) $str .= "
";
+ if ($it[it_type1]) $str .= "
";
+ if ($it[it_type2]) $str .= "
";
+ if ($it[it_type3]) $str .= "
";
+ if ($it[it_type4]) $str .= "
";
+ if ($it[it_type5]) $str .= "
";
// 품절
$stock = get_it_stock_qty($it[it_id]);
if ($stock <= 0)
- $str .= "
";
+ $str .= "
";
return $str;
}