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/page | |
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/page')
-rw-r--r-- | modules/page/page.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/page/page.module b/modules/page/page.module index 39ab6f63b..f9e59ed72 100644 --- a/modules/page/page.module +++ b/modules/page/page.module @@ -66,7 +66,7 @@ function page_admin() { print page_form(); break; case "edit": - print page_form(node_get_array(nid, $id)); + print page_form(node_get_array(array(nid => $id))); break; case "listing": print node_listing(page_query()); |