diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-08-31 15:50:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-08-31 15:50:35 +0000 |
commit | a355254e331490b0186a23a599f6bea42770833d (patch) | |
tree | ceac83d7117ab8878dd6d4901a5fe431f8bac95b /modules/node/node.module | |
parent | f60cdab373ca357c355b9389d70bad39f9cfa387 (diff) | |
download | brdo-a355254e331490b0186a23a599f6bea42770833d.tar.gz brdo-a355254e331490b0186a23a599f6bea42770833d.tar.bz2 |
- Patch #235175 by dmitrig01: name of content type is incorrectly capitalized.
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 471b5c8ab..70129354a 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1552,7 +1552,7 @@ function node_menu() { foreach (node_get_types('types', NULL, TRUE) as $type) { $type_url_str = str_replace('_', '-', $type->type); $items['node/add/' . $type_url_str] = array( - 'title' => drupal_ucfirst($type->name), + 'title' => $type->name, 'title callback' => 'check_plain', 'page callback' => 'node_add', 'page arguments' => array(2), |