Changeset 605

Show
Ignore:
Timestamp:
12/11/03 18:44:05 (5 years ago)
Author:
saxmatt
Message:

Missing quote.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/functions.php

    r603 r605  
    677677        ++$i; 
    678678        $category->cat_name = stripslashes($category->cat_name); 
    679         echo "<label for='category-$i' class='selectit'><input value='$category->cat_ID' type='checkbox' name='post_category[] ' id='category-$i'"; 
     679        echo "\n<label for='category-$i' class='selectit'><input value='$category->cat_ID' type='checkbox' name='post_category[]' id='category-$i'"; 
    680680        if ($postcategories && in_array($category->cat_ID, $postcategories)) 
    681             echo " checked='checked'"
     681            echo ' checked="checked"'
    682682        echo " /> $category->cat_name</label> "; 
    683683    }