summaryrefslogtreecommitdiff
path: root/modules/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-10-10 11:17:24 +0000
committerDries Buytaert <dries@buytaert.net>2004-10-10 11:17:24 +0000
commitabcfd2192724f527e78b6e573e1801fd7af77f0c (patch)
treeba8ce6877b0ebb6a246cd0a1e83736532244ad01 /modules/node.module
parent5407b630e3ec610e51099202dc5c73501ea33991 (diff)
downloadbrdo-abcfd2192724f527e78b6e573e1801fd7af77f0c.tar.gz
brdo-abcfd2192724f527e78b6e573e1801fd7af77f0c.tar.bz2
- Code improvement: removed some redundant code from the node module.
Diffstat (limited to 'modules/node.module')
-rw-r--r--modules/node.module13
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/node.module b/modules/node.module
index 62f3345d1..b6e76329a 100644
--- a/modules/node.module
+++ b/modules/node.module
@@ -691,19 +691,6 @@ function node_menu($may_cache) {
return $items;
}
-function node_admin_edit($node) {
- if (is_numeric($node)) {
- $node = node_load(array('nid' => $node));
- }
-
- $output .= node_form($node);
-
- // Display the node form extensions:
- $output .= implode("\n", module_invoke_all('node_link', $node));
-
- return $output;
-}
-
/**
* Generate the content administration overview.
*/