implode on ", " instead of ","

This commit is contained in:
james 2005-03-30 18:24:20 +00:00
parent 354ab22d92
commit c632070d6e

View File

@ -183,7 +183,7 @@
echo "<td>";
if(count($judge_subdivs[$div]))
{
$divdata=implode(",",$judge_subdivs[$div]);
$divdata=implode(", ",$judge_subdivs[$div]);
echo "$divdata";
}
else