diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-11 20:31:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-11 20:31:26 +0000 |
commit | a8b8c247db070d96a663ab8bb57a40ead173300a (patch) | |
tree | 959b434490bbc22d4f73ded0adbaff21600a7262 /modules/story/story.module | |
parent | 5ac59aacd2c5d60155b7236c588bed2e750b3e04 (diff) | |
download | brdo-a8b8c247db070d96a663ab8bb57a40ead173300a.tar.gz brdo-a8b8c247db070d96a663ab8bb57a40ead173300a.tar.bz2 |
- Patch #5021: clean up URLs in _help texts. Patch by UnConeD.
Diffstat (limited to 'modules/story/story.module')
-rw-r--r-- | modules/story/story.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/story/story.module b/modules/story/story.module index d50b3b61d..b441b1667 100644 --- a/modules/story/story.module +++ b/modules/story/story.module @@ -13,8 +13,8 @@ function story_help($section = "admin/help#story") { break; case 'admin/help#story': $output = "<p>The story module lets your users submit articles for consideration by the rest of the community, who can vote on them if moderation is enabled. Stories usually follow a publishing flow of <strong>submit -> moderate -> post to the main page -> comments</strong>. Administrators are able to shortcut this flow as desired.</p>"; - $output .= "In %story-config you can set up an introductory text for story authors, and a floor on the number of words which may be included in a story. This is designed to help discourage the submission of trivially short stories."; - $output = t($output, array("%story-config" => l(t("administer") ." » ". t("configuration") ." » ". t("modules") ." » ". t("story"), "admin/system/modules/story"))); + $output .= "In <a href=\"%story-config\">administer » configuration » modules » story</a> you can set up an introductory text for story authors, and a floor on the number of words which may be included in a story. This is designed to help discourage the submission of trivially short stories."; + $output = t($output, array("%story-config" => url("admin/system/modules/story"))); break; } |