summaryrefslogtreecommitdiff
path: root/modules/story/story.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2001-05-20 16:47:50 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2001-05-20 16:47:50 +0000
commit27496c4620f3669b3c5449816550edee73e3794f (patch)
treed51f1724736c9259c0d392f0a5ab2d1ac68f571a /modules/story/story.module
parentdb2a56974985078811ff380c01f0e2460b4a9089 (diff)
downloadbrdo-27496c4620f3669b3c5449816550edee73e3794f.tar.gz
brdo-27496c4620f3669b3c5449816550edee73e3794f.tar.bz2
- Changed the node_get_object() and node_get_array() functions to allow multiple conditions
- Added the "delete" hook for node-modules. When called, a module should do additional clean-up if necessary. - Updated all node-modules
Diffstat (limited to 'modules/story/story.module')
-rw-r--r--modules/story/story.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/story/story.module b/modules/story/story.module
index 935f0ca93..637a4613a 100644
--- a/modules/story/story.module
+++ b/modules/story/story.module
@@ -135,7 +135,7 @@ function story_admin() {
print story_overview(story_query($type));
break;
case "edit":
- print story_form(node_get_array("nid", check_input($id)));
+ print story_form(node_get_array(array("nid" => check_input($id))));
break;
case "help":
story_help();