diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-11 14:25:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-11 14:25:41 +0000 |
commit | 065fa60551edddc27a30d04cecb58b30b7ac8e3c (patch) | |
tree | 6f5ad906f0b6ffdc75206065ca4b4574deab791d /modules/forum | |
parent | 5fbaa4b83c86b554d414754d0112a2474624aaae (diff) | |
download | brdo-065fa60551edddc27a30d04cecb58b30b7ac8e3c.tar.gz brdo-065fa60551edddc27a30d04cecb58b30b7ac8e3c.tar.bz2 |
- Patch #516416 by lyricnz: fix broken links to taxonomy administration pages.
Diffstat (limited to 'modules/forum')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index baac678ad..0e6d0acce 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -28,7 +28,7 @@ function forum_help($path, $arg) { case 'admin/build/forum/add/forum': return '<p>' . t('A forum holds related or similar forum topics (a forum topic is the initial post to a threaded discussion). For example, a forum named "Fruit" may contain forum topics titled "Apples" and "Bananas", respectively.') . '</p>'; case 'admin/build/forum/settings': - return '<p>' . t('These settings allow you to adjust the display of your forum topics. The content types available for use within a forum may be selected by editing the <em>Content types</em> on the <a href="@forum-vocabulary">forum vocabulary page</a>.', array('@forum-vocabulary' => url('admin/content/taxonomy/edit/vocabulary/' . variable_get('forum_nav_vocabulary', 0)))) . '</p>'; + return '<p>' . t('These settings allow you to adjust the display of your forum topics. The content types available for use within a forum may be selected by editing the <em>Content types</em> on the <a href="@forum-vocabulary">forum vocabulary page</a>.', array('@forum-vocabulary' => url('admin/build/taxonomy/edit/vocabulary/' . variable_get('forum_nav_vocabulary', 0)))) . '</p>'; } } |