diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-07 15:04:16 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-07 15:04:16 +0000 |
commit | 729fa6c11b604dc549fb8385a03fb9af28ca68d3 (patch) | |
tree | a88802317b1d79f9fd037e7c978ae4b1a0068e30 /modules/comment | |
parent | bda6fa2b715199e4f9b25b3bfcd926e10d33a89c (diff) | |
download | brdo-729fa6c11b604dc549fb8385a03fb9af28ca68d3.tar.gz brdo-729fa6c11b604dc549fb8385a03fb9af28ca68d3.tar.bz2 |
- Patch #77422 by timcn: corrected various paths in the documentation.
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index f135e27cb..3d4be56b7 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -74,10 +74,10 @@ function comment_help($section) { $output .= '<p>'. t('An administrator can give comment permissions to user groups, and users can (optionally) edit their last comment, assuming no others have been posted since. Attached to each comment board is a control panel for customizing the way that comments are displayed. Users can control the chronological ordering of posts (newest or oldest first) and the number of posts to display on each page. Comments behave like other user submissions. Filters, smileys and HTML that work in nodes will also work with comments. The comment module provides specific features to inform site members when new comments have been posted.') .'</p>'; $output .= t('<p>You can</p> <ul> -<li>control access for various comment module functions through access permissions <a href="%admin-access">administer >> access control</a>.</li> -<li>administer comments <a href="%admin-comment-configure"> administer >> comments >> configure</a>.</li> +<li>control access for various comment module functions through access permissions <a href="%admin-access">administer >> user management >> access control</a>.</li> +<li>administer comments <a href="%admin-comment-configure"> administer >> content management >> comments >> settings</a>.</li> </ul> -', array('%admin-access' => url('admin/access'), '%admin-settings-comment' => url('admin/content/comment/settings'))); +', array('%admin-access' => url('admin/user/access'), '%admin-settings-comment' => url('admin/content/comment/settings'))); $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%comment">Comment page</a>.', array('%comment' => 'http://drupal.org/handbook/modules/comment/')) .'</p>'; return $output; case 'admin/settings/modules#description': @@ -438,7 +438,7 @@ function comment_admin_settings() { COMMENT_ANONYMOUS_MAYNOT_CONTACT => t('Anonymous posters may not enter their contact information'), COMMENT_ANONYMOUS_MAY_CONTACT => t('Anonymous posters may leave their contact information'), COMMENT_ANONYMOUS_MUST_CONTACT => t('Anonymous posters must leave their contact information')), - '#description' => t('This option is enabled when anonymous users have permission to post comments on the <a href="%url">permissions page</a>.', array('%url' => url('admin/access'))), + '#description' => t('This option is enabled when anonymous users have permission to post comments on the <a href="%url">permissions page</a>.', array('%url' => url('admin/user/access'))), ); if (!user_access('post comments', user_load(array('uid' => 0)))) { $form['posting_settings']['comment_anonymous']['#attributes'] = array('disabled' => 'disabled'); |