summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index f0445c119..fc9fc5bbf 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -243,6 +243,8 @@ function blog_form(&$node, &$help, &$error) {
$output .= form_textarea(t("Teaser"), "teaser", $node->teaser, 60, 5, $error["teaser"]);
}
+ $output .= implode("<p>", taxonomy_node_form("blog", $node));
+
$output .= form_textarea(t("Body"), "body", $node->body, 60, 15, $error["body"] ? $error["body"] : t("Allowed HTML tags") .": ". htmlspecialchars(variable_get("allowed_html", "")));
return $output;