diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-01-05 22:03:06 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-01-05 22:03:06 +0000 |
commit | f80f7a7dbd78c68ca38bc6279c942db053f62a89 (patch) | |
tree | 6fbe5b92450a1cb3808576a0fa6a2739c8d5d6ef /modules/node/node.module | |
parent | bd097f45fe20a494519c0d1b263d7cc3cf6743f2 (diff) | |
download | brdo-f80f7a7dbd78c68ca38bc6279c942db053f62a89.tar.gz brdo-f80f7a7dbd78c68ca38bc6279c942db053f62a89.tar.bz2 |
Revert break tag.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index dbd4dd3ab..1a0e296e9 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -2199,7 +2199,7 @@ function node_preview($node) { function theme_node_preview($node) { $output = '<div class="preview">'; if ($node->teaser && $node->teaser != $node->body) { - drupal_set_message(t('The trimmed version of your post shows what your post looks like when promoted to the main page or when exported for syndication. You can insert the delimiter "<break>" (without the quotes) to fine-tune where your post gets split.')); + drupal_set_message(t('The trimmed version of your post shows what your post looks like when promoted to the main page or when exported for syndication. You can insert the delimiter "<!--break-->" (without the quotes) to fine-tune where your post gets split.')); $output .= '<h3>'. t('Preview trimmed version') .'</h3>'; $output .= node_view(drupal_clone($node), 1, FALSE, 0); $output .= '<h3>'. t('Preview full version') .'</h3>'; |