diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-08-22 17:06:44 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-08-22 17:06:44 +0000 |
commit | 4e2ee96d4c04fbee06abcd3d0bf84a7893792c7f (patch) | |
tree | fe81455832b44894f1cb9b96a3690279a2c195f9 /modules/story/story.module | |
parent | 134c9eb8878a814d6955e6471aa10f93302d20f8 (diff) | |
download | brdo-4e2ee96d4c04fbee06abcd3d0bf84a7893792c7f.tar.gz brdo-4e2ee96d4c04fbee06abcd3d0bf84a7893792c7f.tar.bz2 |
- Removed left-overs from the rating module. Patch by Gerhard. Updated the
PostgreSQL and MSSQL database scheme as well.
- Made sure the update script updates the correct tables when database
prefixing is enabled. Patch by Bart Jansens.
- Improved the breadcrumb navigation of the book and the forum module as per
Keith Instone's suggestions.
- Updated page titles (or block titles) and links to match. Suggested by
Keith Instone.
- Added missing 'thread' field to the comment table of the MySQL database scheme.
Fixes bug #2590.
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 5ff152742..1b6a4b1ea 100644 --- a/modules/story/story.module +++ b/modules/story/story.module @@ -9,12 +9,12 @@ function story_help($section = "admin/story/help") { case "admin/system/modules/story": $output = "Stories are like newspaper articles. They tend to follow a publishing flow of <b>submit -> moderate -> post to the main page -> comments</b>. Below you may fix a minimum word count for stories and also write some submission or content guidelines for users wanting to post a story."; break; - case "admin/story/help": + case "admin/story/help": $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 <b>submit -> moderate -> post to the main page -> comments</b>. Administrators are able to shortcut this flow as desired.</p>"; $output .= "In ". l("site configuration >> modules >> story", "admin/system/modules/story") ." 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."; break; } - + return t($output); } |