diff options
Diffstat (limited to 'modules/book.module')
-rw-r--r-- | modules/book.module | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/book.module b/modules/book.module index a246571b3..925261196 100644 --- a/modules/book.module +++ b/modules/book.module @@ -183,6 +183,10 @@ function book_form(&$node, &$help, &$error) { } } + if (function_exists("taxonomy_node_form")) { + $output .= implode("", taxonomy_node_form("book", $node)); + } + $output .= form_textarea(t("Body"), "body", $node->body, 60, 20, t("Allowed HTML tags") .": ". htmlspecialchars(variable_get("allowed_html", ""))); $output .= form_textarea(t("Log message"), "log", $node->log, 60, 5, t("An explanation of the additions or updates being made to help the group understand your motivations.")); |