From 691d8ba54f0fb3de63548be746a6e1e98d027ced Mon Sep 17 00:00:00 2001 From: natrak <> Date: Mon, 4 Jun 2001 15:05:20 +0000 Subject: [PATCH] - Changed   to a space (' '). The   was not being converted to a space. --- modules/structure.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/structure.module b/modules/structure.module index 050f10d3657..823da525418 100644 --- a/modules/structure.module +++ b/modules/structure.module @@ -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."));