diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-05-15 21:35:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-05-15 21:35:27 +0000 |
commit | 1022eb61ab984862167bfa584ab4044ee2410d5b (patch) | |
tree | 21218861058c21c99efdba836e744bc12c8f153b /modules/node/node.module | |
parent | a669485bc4a7d81a6b5d4c40c6eaea746db8b669 (diff) | |
download | brdo-1022eb61ab984862167bfa584ab4044ee2410d5b.tar.gz brdo-1022eb61ab984862167bfa584ab4044ee2410d5b.tar.bz2 |
- Drastically simplified the node_save() API, which should make the
node-forms more secure. Updated "node.module" and "queue.module"
to work with the new API.
The upgrade script, 2.00-to-x.xx.php, is still broken and needs
fixing.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 8b31f63c5..e469bbfea 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -101,7 +101,7 @@ function node_admin() { print node_listing(node_query()); break; case "Save node": - node_save($edit); + node_save($edit, array(uthor, comment, moderate, promote, status, timestamp)); print node_admin_view($id); break; case "View node": |