diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-17 22:27:23 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-17 22:27:23 +0000 |
commit | d5c802645479f872fbce9f9cd9cbed78d4f57b50 (patch) | |
tree | f5f7a655c6b0b629b5590c9a3fe79dd335d1d8e6 /modules/blog/blog.module | |
parent | 928c113b82833cd1f1dfbe42f813ed3547b9ede7 (diff) | |
download | brdo-d5c802645479f872fbce9f9cd9cbed78d4f57b50.tar.gz brdo-d5c802645479f872fbce9f9cd9cbed78d4f57b50.tar.bz2 |
- Updated the calls to menu() to use MENU_HIDE instead of 1
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 3eef09394..e24f7cb97 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -253,7 +253,7 @@ function blog_link($type, $node = 0, $main) { menu("blog/" . $user->uid, t("my blog"), "blog_page", 1); } if (user_access("access content")) { - menu("blog", t("blogs"), "blog_page", 0, 1); + menu("blog", t("blogs"), "blog_page", 0, MENU_HIDE); } } |