diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-20 16:39:58 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-20 16:39:58 +0000 |
commit | 59b9ebaad25282a9c53ce69fa29b086830fe7f7d (patch) | |
tree | 8ead8950835833f1a13b4beca5b88ad887b91cd1 /modules/blog.module | |
parent | bf2b4f0b459f01d56b7d2de7be96738968114037 (diff) | |
download | brdo-59b9ebaad25282a9c53ce69fa29b086830fe7f7d.tar.gz brdo-59b9ebaad25282a9c53ce69fa29b086830fe7f7d.tar.bz2 |
- bug fix.
Diffstat (limited to 'modules/blog.module')
-rw-r--r-- | modules/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog.module b/modules/blog.module index 79cd93732..c9a9ae39d 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -242,7 +242,7 @@ function blog_form(&$node, &$help, &$error) { } if (function_exists("taxonomy_node_form")) { - $output = implode("", taxonomy_node_form("blog", $node)); + $output .= implode("", 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", ""))); |