Missing quote.

git-svn-id: https://develop.svn.wordpress.org/trunk@605 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-12-11 18:44:05 +00:00
parent 70f16e9a95
commit c5d9fd8e24
1 changed files with 2 additions and 2 deletions

View File

@ -676,9 +676,9 @@ function dropdown_categories($default = 0) {
foreach($categories as $category) {
++$i;
$category->cat_name = stripslashes($category->cat_name);
echo "<label for='category-$i' class='selectit'><input value='$category->cat_ID' type='checkbox' name='post_category[] ' id='category-$i'";
echo "\n<label for='category-$i' class='selectit'><input value='$category->cat_ID' type='checkbox' name='post_category[]' id='category-$i'";
if ($postcategories && in_array($category->cat_ID, $postcategories))
echo " checked='checked'";
echo ' checked="checked"';
echo " /> $category->cat_name</label> ";
}