diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-29 20:23:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-29 20:23:10 +0000 |
commit | 539ba0dc38d7a2494f71df221ee9ee9eae7cae69 (patch) | |
tree | 55f85c9ce27b748344c58b90b89468768b6f02ec /modules/node/node.module | |
parent | 2157bab64d2cb2c4cfdf3591356fdcad1ca50856 (diff) | |
download | brdo-539ba0dc38d7a2494f71df221ee9ee9eae7cae69.tar.gz brdo-539ba0dc38d7a2494f71df221ee9ee9eae7cae69.tar.bz2 |
- Patch #670082 by yched, axyjo: hook_entity_info() cleanups.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index c1c623b7f..4f78d271e 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -223,10 +223,10 @@ function node_entity_info() { if (module_exists('search')) { $return['node']['view modes'] += array( 'search_index' => array( - 'label' => t('Search Index'), + 'label' => t('Search index'), ), 'search_result' => array( - 'label' => t('Search Result'), + 'label' => t('Search result'), ), ); } |