Formatting fix.

git-svn-id: https://develop.svn.wordpress.org/trunk@849 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-02-09 09:55:17 +00:00
parent e2efe09044
commit 9806f14f7d
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ function write_nested_categories($categories) {
foreach($categories as $category) {
echo '<label for="category-', $category['cat_ID'], '" class="selectit"><input value="', $category['cat_ID'],
'" type="checkbox" name="post_category[]" id="category-', $category['cat_ID'], '"',
($category['checked'] ? ' checked="checked"' : ""), '/>', $category['cat_name'], "</label>\n";
($category['checked'] ? ' checked="checked"' : ""), '/> ', $category['cat_name'], "</label>\n";
if(isset($category['children'])) {
echo "\n<span class='cat-nest'>\n";