+ add a sapce to the checkbox and it's label.

This commit is contained in:
wangchunsheng
2010-11-24 03:22:05 +00:00
parent f59c81db23
commit 8cd8feee08

View File

@@ -213,7 +213,7 @@ class html
$string .= "<span><input type='checkbox' name='{$name}[]' value='$key' ";
$string .= strpos($checked, ",$key,") !== false ? " checked ='checked'" : "";
$string .= $attrib;
$string .= " /><label>$value</label></span>\n";
$string .= " /> <label>$value</label></span>\n";
}
return $string;
}