diff options
-rw-r--r-- | modules/node.module | 4 | ||||
-rw-r--r-- | modules/node/node.module | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/modules/node.module b/modules/node.module index 718e34ac2..5302b20fd 100644 --- a/modules/node.module +++ b/modules/node.module @@ -55,6 +55,10 @@ function node_help($section) { case 'admin/node/configure/defaults': return t('<p>This page lets you set the defaults used during creation of nodes for all the different node types.<br /><em>comment:</em> Read/write setting for comments.<br /><em>publish:</em> Is this post publicly viewable, has it been published?<br /><em>promote:</em> Is this post to be promoted to the front page?<br /><em>moderate:</em> Does this post need approval before it can be viewed?<br /><em>sticky:</em> Is this post always visible at the top of lists?<br /><em>revision:</em> Will this post go into the revision system allowing multiple versions to be saved?</p>'); } + + if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'revisions') { + return t('The revisions let you track differences between multiple versions of a post.'); + } } /** diff --git a/modules/node/node.module b/modules/node/node.module index 718e34ac2..5302b20fd 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -55,6 +55,10 @@ function node_help($section) { case 'admin/node/configure/defaults': return t('<p>This page lets you set the defaults used during creation of nodes for all the different node types.<br /><em>comment:</em> Read/write setting for comments.<br /><em>publish:</em> Is this post publicly viewable, has it been published?<br /><em>promote:</em> Is this post to be promoted to the front page?<br /><em>moderate:</em> Does this post need approval before it can be viewed?<br /><em>sticky:</em> Is this post always visible at the top of lists?<br /><em>revision:</em> Will this post go into the revision system allowing multiple versions to be saved?</p>'); } + + if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'revisions') { + return t('The revisions let you track differences between multiple versions of a post.'); + } } /** |