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/forum | |
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/forum')
-rw-r--r-- | modules/forum/forum.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index ec1caa25d..2c414ed0e 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -17,8 +17,8 @@ function forum_help($section) { $output .= '<p>'. t('Forums module <strong>requires Taxonomy and Comments module</strong> be enabled.') .'</p>'; $output .= t('<p>You can</p> <ul> -<li>administer forums at <a href="%admin-forum">administer >> forums</a>.</li> -<li>enable the required comment and taxonomy modules at <a href="%admin-modules">administer >> modules</a>.</li> +<li>administer forums at <a href="%admin-forum">administer >> content management >> forums</a>.</li> +<li>enable the required comment and taxonomy modules at <a href="%admin-modules">administer >> site configuration >> modules</a>.</li> <li>read about the comment module at <a href="%admin-help-comment">administer >> help >> comment</a>.</li> <li>read about the taxonomy module at <a href="%admin-help-taxonomy">administer >> help >> taxonomy</a>.</li> </ul> @@ -341,7 +341,7 @@ function forum_submit(&$node) { } } $old_tid = db_result(db_query_range("SELECT tid FROM {forum} WHERE nid = %d ORDER BY vid DESC", $node->nid, 0,1)); - if ($old_tid) { + if ($old_tid) { if (($node->tid != $old_tid) && $node->shadow) { // A shadow copy needs to be created. Retain new term and add old term. $node->taxonomy[] = $old_tid; |