diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-06 16:59:14 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-06 16:59:14 +0000 |
commit | b12a25d24f68d7bfb44240cd84dcfc54c17e3009 (patch) | |
tree | 321a10ca01742ac8e51f0b3ee442f48b33ce3542 | |
parent | a17d24f0b0964ec18e1ce9f810ff36527f6a9b1e (diff) | |
download | brdo-b12a25d24f68d7bfb44240cd84dcfc54c17e3009.tar.gz brdo-b12a25d24f68d7bfb44240cd84dcfc54c17e3009.tar.bz2 |
#632820 follow-up by arianek: Add missing link to node.module help.
-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 9692a3bed..8561fcb11 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -88,7 +88,7 @@ function node_help($path, $arg) { $output .= '<dt>' . t('Creating content') . '</dt>'; $output .= '<dd>' . t('When new content is created, the Node module records basic information about the content, including the author, date of creation, and the <a href="@content-type">Content type</a>. It also manages the <em>publishing options</em>, which define whether or not the content is published, promoted to the front page of the site, and/or sticky at the top of content lists. Default settings can be configured for each <a href="@content-type">type of content</a> on your site.', array('@content-type' => url('admin/structure/types'))) . '</dd>'; $output .= '<dt>' . t('Creating custom content types') . '</dt>'; - $output .= '<dd>' . t('The Node module gives users with the <em>Administer content types</em> permission the ability to <a href="@content-new">create new content types</a> in addition to the default ones already configured. Creating custom content types allows you the flexibility to add <a href="@field">fields</a> and configure default settings that suit the differing needs of various site content.', array('@field' => url('admin/help/field'))) . '</dd>'; + $output .= '<dd>' . t('The Node module gives users with the <em>Administer content types</em> permission the ability to <a href="@content-new">create new content types</a> in addition to the default ones already configured. Creating custom content types allows you the flexibility to add <a href="@field">fields</a> and configure default settings that suit the differing needs of various site content.', array('@content-new' => url('admin/structure/types/add'), '@field' => url('admin/help/field'))) . '</dd>'; $output .= '<dt>' . t('Administering content') . '</dt>'; $output .= '<dd>' . t('The <a href="@content">Content administration page</a> allows you to review and bulk manage your site content.', array('@content' => url('admin/content'))) . '</dd>'; $output .= '<dt>' . t('Creating revisions') . '</dt>'; |