diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-08-29 19:58:49 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-08-29 19:58:49 +0000 |
commit | 246274eb1643d3d6643cdf85559ab204491d93ac (patch) | |
tree | 64dc02525e4ca034f39ca4c90acf6945fade5325 /modules/blog | |
parent | 75fad91cf544e9b6598fa30574290d6a6e73f033 (diff) | |
download | brdo-246274eb1643d3d6643cdf85559ab204491d93ac.tar.gz brdo-246274eb1643d3d6643cdf85559ab204491d93ac.tar.bz2 |
- Renamed _node() to _node_info()! We reserve _node for _nodeapi.
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 3dbe76083..d60c1fcaa 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -7,9 +7,9 @@ */ /** - * Implementation of hook_node(). + * Implementation of hook_node_info(). */ -function blog_node() { +function blog_node_info() { return array('blog' => array('name' => t('personal blog entry'), 'base' => 'blog')); } |