diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-07 15:02:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-07 15:02:28 +0000 |
commit | 38806b4a39a6bdfc9d4a09f86b7bbaf0173c298d (patch) | |
tree | a445eab5750bd259731134cd31412305b55b8acb /modules/story.module | |
parent | 8213f5b2627a6b63db9f84b572918bd7e3254dff (diff) | |
download | brdo-38806b4a39a6bdfc9d4a09f86b7bbaf0173c298d.tar.gz brdo-38806b4a39a6bdfc9d4a09f86b7bbaf0173c298d.tar.bz2 |
- fixed bug in common.inc: throttle()
- streamlined method invocation in node.inc
- added node_status() function to modules
- added NEW (mostly static) page module
- added NEW settings module
Diffstat (limited to 'modules/story.module')
-rw-r--r-- | modules/story.module | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/story.module b/modules/story.module index a750beffc..1ab6f6da5 100644 --- a/modules/story.module +++ b/modules/story.module @@ -31,6 +31,10 @@ function story_timout_threshold($node, $default) { return section_timout_threshold($node->section, $default); } +function story_status() { + return array(dumped, queued, posted); +} + function story_find($keys) { global $status, $user; $find = array(); |