diff options
author | natrak <> | 2001-06-04 15:05:20 +0000 |
---|---|---|
committer | natrak <> | 2001-06-04 15:05:20 +0000 |
commit | 691d8ba54f0fb3de63548be746a6e1e98d027ced (patch) | |
tree | 15836be78f3496a7eb73d31b4a0a432a55b78fcb | |
parent | 0c89ef12495bdc89266b1430178ef513d8870060 (diff) | |
download | brdo-691d8ba54f0fb3de63548be746a6e1e98d027ced.tar.gz brdo-691d8ba54f0fb3de63548be746a6e1e98d027ced.tar.bz2 |
- Changed to a space (' '). The was not being converted to a
space.
-rw-r--r-- | modules/structure.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/structure.module b/modules/structure.module index 050f10d36..823da5254 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.")); |