summaryrefslogtreecommitdiff
path: root/modules/poll
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
commitb6532a4fdbb5e32f2ab3bd7250aedd435313e52e (patch)
tree9859cf173b9c7bc75ddd1901fd77d05d9b3a28a1 /modules/poll
parent4f2b77bcd99584b2a31cb9900620f376a7707b2f (diff)
downloadbrdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.gz
brdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.bz2
#200069 by keith.smith: new standard for 'more information' links in module help texts, as the handbook we referred to before was renamed
Diffstat (limited to 'modules/poll')
-rw-r--r--modules/poll/poll.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/poll/poll.module b/modules/poll/poll.module
index f2d9e41a2..a21c0db9b 100644
--- a/modules/poll/poll.module
+++ b/modules/poll/poll.module
@@ -15,7 +15,7 @@ function poll_help($path, $arg) {
case 'admin/help#poll':
$output = '<p>'. t('The poll module can be used to create simple polls for site users. A poll is a simple, multiple choice questionnaire which displays the cumulative results of the answers to the poll. Having polls on the site is a good way to receive feedback from community members.') .'</p>';
$output .= '<p>'. t('When creating a poll, enter the question being posed, as well as the potential choices (and beginning vote counts for each choice). The status and duration (length of time the poll remains active for new votes) can also be specified. Use the <a href="@poll">poll</a> menu item to view all current polls. To vote in or view the results of a specific poll, click on the poll itself.', array('@poll' => url('poll'))) .'</p>';
- $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@poll">Poll page</a>.', array('@poll' => 'http://drupal.org/handbook/modules/poll/')) .'</p>';
+ $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@poll">Poll module</a>.', array('@poll' => 'http://drupal.org/handbook/modules/poll/')) .'</p>';
return $output;
}
}