diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-08-12 15:12:26 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-08-12 15:12:26 +0000 |
commit | 441b63accda0538e7257eebabc9796df06630a80 (patch) | |
tree | c2d6af71fd946414901cccd28f7ba5fc36f45f3a /modules/node/node.module | |
parent | d651b9dc3b7c7f81dfdfe1b6dcd1e16c5db48890 (diff) | |
download | brdo-441b63accda0538e7257eebabc9796df06630a80.tar.gz brdo-441b63accda0538e7257eebabc9796df06630a80.tar.bz2 |
Moving all legacy handlers into legacy.module.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index f7ccc13f4..f6e7c5869 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -681,12 +681,6 @@ function node_menu() { } } - // Legacy handler for old "node/view/52" paths. - $items[] = array('path' => 'node/view', 'title' => t('view'), - 'callback' => 'node_old_url', - 'access' => user_access('access content'), - 'type' => MENU_CALLBACK); - return $items; } @@ -1435,10 +1429,6 @@ function node_page_default() { return $output; } -function node_old_url($nid = 0) { - drupal_goto("node/$nid"); -} - /** * Menu callback; dispatches control to the appropriate operation handler. */ |