diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-02 13:44:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-02 13:44:07 +0000 |
commit | eaf354017509ce7f43da89f1ec53986cdca57f2a (patch) | |
tree | a60b2954b16ca1d628d5defa8cd325cb42982b2b /modules/node/node.module | |
parent | bd5c16ecf4fd9a23de928af65236d18445ff71bc (diff) | |
download | brdo-eaf354017509ce7f43da89f1ec53986cdca57f2a.tar.gz brdo-eaf354017509ce7f43da89f1ec53986cdca57f2a.tar.bz2 |
- Patch #76702 by timcn: fixed some broken admin pages.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 2398911f2..cc759d5d8 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -911,7 +911,7 @@ function node_menu($may_cache) { 'type' => MENU_LOCAL_TASK); } } - else if (arg(0) == 'admin' && arg(1) == 'settings' && arg(2) == 'content-types' && is_string(arg(3))) { + else if (arg(0) == 'admin' && arg(1) == 'content' && arg(2) == 'types' && is_string(arg(3))) { $items[] = array('path' => 'admin/content/types/'. arg(3), 'title' => t("'%name' content type", array('%name' => node_get_name(arg(3)))), 'type' => MENU_CALLBACK); |