summaryrefslogtreecommitdiff
path: root/modules/taxonomy.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2002-05-20 07:34:38 +0000
committerDries Buytaert <dries@buytaert.net>2002-05-20 07:34:38 +0000
commitf3c875717910918574aa1310de176e0c44062199 (patch)
tree6ea8a302644d3e712263cfd61fd2163dee2eddc0 /modules/taxonomy.module
parentd895ef8c40a91380f8f484b41b9df11889e1380b (diff)
downloadbrdo-f3c875717910918574aa1310de176e0c44062199.tar.gz
brdo-f3c875717910918574aa1310de176e0c44062199.tar.bz2
- Ran the code through 'scripts/code-clean.sh': removed trailing whitespace
(and possibly tabs).
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r--modules/taxonomy.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module
index 5d4a7f4ee..ccccd36c4 100644
--- a/modules/taxonomy.module
+++ b/modules/taxonomy.module
@@ -56,7 +56,7 @@ function taxonomy_form_vocabulary($edit = array()) {
$nodetypes[$name] = $name;
}
}
-
+
$form .= form_textfield("Vocabulary name", "name", $edit["name"], 50, 64, "Required. The name for this vocabulary. Example: 'Topic'.");
$form .= form_textarea("Description", "description", $edit["description"], 60, 5, "Optional. Description of the vocabulary, can be used by modules.");
$form .= form_select("Types", "types", explode(",", $edit["types"]), $nodetypes, "Required. A list of node types you want to associate this vocabulary with.", "", 1);