- Changed   to a space (' '). The   was not being converted to a

space.
3-00
natrak 2001-06-04 15:05:20 +00:00
parent 0c89ef1249
commit 691d8ba54f
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ function topic_form($edit = array()) {
while ($topic = db_fetch_object($result)) {
$topics[$topic->tid] = $topic->name;
}
$topics[0] = " ";
$topics[0] = " ";
$form .= form_textfield(t("Name"), "name", $edit[name], 30, 55, t("A unique name for this topic like 'science', 'internet', 'culture', etc."));
$form .= form_select(t("Parent"), "pid", $edit[pid], $topics, t("The parent topic this topic belongs in."));