diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-06 14:14:16 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-06 14:14:16 +0000 |
commit | 8213f5b2627a6b63db9f84b572918bd7e3254dff (patch) | |
tree | bdaa19d917ce2d0db1ba54ef884e22a69130846a /modules/story.module | |
parent | 048664f2786fce9bd049f39eea39a2a7fe2868f0 (diff) | |
download | brdo-8213f5b2627a6b63db9f84b572918bd7e3254dff.tar.gz brdo-8213f5b2627a6b63db9f84b572918bd7e3254dff.tar.bz2 |
A lot of small changes (search-n-replace) make a big commit:
- fixed update bug in book.module
- provide a log message when both adding and updating book pages
- all configurable variables are now accessed through "variable_get()":
- rewrote watchdog and submission throttle and removed watchdog.inc
- improved robustness of sections.inc
- imporved story.module
- updated ./database/database.sql
Diffstat (limited to 'modules/story.module')
-rw-r--r-- | modules/story.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/story.module b/modules/story.module index d83557456..a750beffc 100644 --- a/modules/story.module +++ b/modules/story.module @@ -20,15 +20,15 @@ class Story { } function story_post_threshold($node, $default) { - return $default; + return section_post_threshold($node->section, $default); } function story_dump_threshold($node, $default) { - return $default; + return section_dump_threshold($node->section, $default); } function story_timout_threshold($node, $default) { - return $default; + return section_timout_threshold($node->section, $default); } function story_find($keys) { |