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/story/story.module | |
parent | 7a972daeab5a9a4aa2253ef10acc8a2b5c754cab (diff) | |
download | brdo-d6c8af93b19c044e6b5441941bf58cb26d395561.tar.gz brdo-d6c8af93b19c044e6b5441941bf58cb26d395561.tar.bz2 |
- re-enabled the teasers
Diffstat (limited to 'modules/story/story.module')
-rw-r--r-- | modules/story/story.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/story/story.module b/modules/story/story.module index 89b57cd67..2f8651e0c 100644 --- a/modules/story/story.module +++ b/modules/story/story.module @@ -77,7 +77,7 @@ function story_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; } |