diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2001-09-26 18:28:10 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2001-09-26 18:28:10 +0000 |
commit | f6f04a82fadbfe291b209eaa879f6ee373cb6e1d (patch) | |
tree | 5462914539dce875d0e149ff48756a13e0a3eb63 /modules/node.module | |
parent | b146513e07feec607030d078e53f1fa9f6d5e403 (diff) | |
download | brdo-f6f04a82fadbfe291b209eaa879f6ee373cb6e1d.tar.gz brdo-f6f04a82fadbfe291b209eaa879f6ee373cb6e1d.tar.bz2 |
Bug fixes mostly
- fixed book.module not generating next/prev links properly
- re-added default node options to the admin page
- fixed a potential bug in node.php. Nodes with same titles were confusing it
at times, should fix the bug reported by Gerhard Killesreiter.
Diffstat (limited to 'modules/node.module')
-rw-r--r-- | modules/node.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/node.module b/modules/node.module index 55fc07fc6..e5ac89f7d 100644 --- a/modules/node.module +++ b/modules/node.module @@ -340,6 +340,7 @@ function node_admin() { print node_edit_content(node_get_array(array("nid" => $id)), $type); break; case "default": + print node_setting(); break; case "confirm delete": print node_delete_confirmation($id); |