diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-11-07 18:14:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-11-07 18:14:46 +0000 |
commit | 234b40b25321e6ddde6815f8fff6dc33fd3317bc (patch) | |
tree | 5bde9e359979247fb2008e27f09de48f1b9a9e4e /modules/story.module | |
parent | 74a1fe5718ff4cec0f04c32a8cb0cd356aa8d6d7 (diff) | |
download | brdo-234b40b25321e6ddde6815f8fff6dc33fd3317bc.tar.gz brdo-234b40b25321e6ddde6815f8fff6dc33fd3317bc.tar.bz2 |
- node system:
+ Added the "delete node"-link: apparently it got lost during the last
commit. Odd.
+ Changed "Edit node" to "Edit <node_name>" on the 'edit node'-page of
the admin section. (There a 4 "Node"s that still need to be removed
though.)
+ Updated the initial submission page (the old submit.php) to include
some descriptions.
Diffstat (limited to 'modules/story.module')
-rw-r--r-- | modules/story.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/story.module b/modules/story.module index a611b3346..b2b004be3 100644 --- a/modules/story.module +++ b/modules/story.module @@ -9,7 +9,8 @@ function story_conf_options() { } function story_node($field) { - $info = array("name" => "story"); + $info["name"] = t("story"); + $info["description"] = t("A story is a post that is submitted to the attention of other users and is queued in the submission queue. Users and moderators vote on the posts they like or dislike, promoting or demoting them. When a post gets above a certain threshold it gets authomatically published to front page."); return $info[$field]; } |