summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-11-27 10:02:06 +0000
committerDries Buytaert <dries@buytaert.net>2004-11-27 10:02:06 +0000
commite1cf88e7f8232a57a9d28ac80f93ecb00195b329 (patch)
tree61dc12316557dcccc40a6657fcdd3e6bc9f27d0f /modules/node/node.module
parentb8a556b81b7c0850349dee8aec1797b19e7dcee0 (diff)
downloadbrdo-e1cf88e7f8232a57a9d28ac80f93ecb00195b329.tar.gz
brdo-e1cf88e7f8232a57a9d28ac80f93ecb00195b329.tar.bz2
- Modified patch #11840 by Stefan: added conctext-sensitive help text to the 'revision'-page.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module4
1 files changed, 4 insertions, 0 deletions
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.');
+ }
}
/**