diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-05-20 16:47:50 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-05-20 16:47:50 +0000 |
commit | 27496c4620f3669b3c5449816550edee73e3794f (patch) | |
tree | d51f1724736c9259c0d392f0a5ab2d1ac68f571a /modules/story.module | |
parent | db2a56974985078811ff380c01f0e2460b4a9089 (diff) | |
download | brdo-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.module')
-rw-r--r-- | modules/story.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/story.module b/modules/story.module index 935f0ca93..637a4613a 100644 --- a/modules/story.module +++ b/modules/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(); |