diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-23 23:11:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-23 23:11:59 +0000 |
commit | 30110a87701149dd23f250354266159ea3e07c35 (patch) | |
tree | 775143b1e81d7ca56df00f29a576e90218545f56 /includes/common.inc | |
parent | 9574766ad8f8810baf42a81ae105984254f0fc0a (diff) | |
download | brdo-30110a87701149dd23f250354266159ea3e07c35.tar.gz brdo-30110a87701149dd23f250354266159ea3e07c35.tar.bz2 |
- Patch #6166 by Moshe: node preview should not display links. Push the links to the theme instead of the theme having to pull them in using node_link().
TODO:
1. Update theme upgrade instructions in the handbook: node_link() is gone.
2. Remove page_link() just like we removed node_link().
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/includes/common.inc b/includes/common.inc index 31f3f426d..d65ebe7a2 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1596,15 +1596,6 @@ function link_page() { } /** - * Fetch a set of links to display after a given node. - * - * The links are gathered by calls to hook_link('node') in each module. - */ -function link_node($node, $main = 0) { - return module_invoke_all('link', 'node', $node, $main); -} - -/** * Perform end-of-request tasks. * * This function sets the page cache if appropriate, and allows modules to |