diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-12-08 13:29:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-12-08 13:29:43 +0000 |
commit | d6c8af93b19c044e6b5441941bf58cb26d395561 (patch) | |
tree | 4a6a0176531cb957d5cb375598dc73a96b7b3e80 /modules/blog | |
parent | 7a972daeab5a9a4aa2253ef10acc8a2b5c754cab (diff) | |
download | brdo-d6c8af93b19c044e6b5441941bf58cb26d395561.tar.gz brdo-d6c8af93b19c044e6b5441941bf58cb26d395561.tar.bz2 |
- re-enabled the teasers
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 850a268fe..8f0d0b7d3 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -264,7 +264,7 @@ function blog_form(&$node, &$help, &$error) { $output .= form_textarea(t("Teaser"), "teaser", $node->teaser, 60, 5, $error["teaser"]); } - $output = form_textarea(t("Body"), "body", $node->body, 60, 15, $error["body"] ? $error["body"] : t("Allowed HTML tags") .": ". htmlspecialchars(variable_get("allowed_html", ""))); + $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; } |