diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-05 05:55:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-05 05:55:04 +0000 |
commit | 93c367bfa21fa16e83d579b1b25bad31b903415a (patch) | |
tree | 3c153d7670f21f7c167a801718c10d3798a96ffa /modules/node/node.module | |
parent | c37b3794cc6bd59a6c09ef003ec4d86626aa76f5 (diff) | |
download | brdo-93c367bfa21fa16e83d579b1b25bad31b903415a.tar.gz brdo-93c367bfa21fa16e83d579b1b25bad31b903415a.tar.bz2 |
- Patch #94019 by chx, jvandyk, RobRoy et al: posts -> content.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index ec3476146..f1e23aeb1 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1051,7 +1051,7 @@ function node_menu($may_cache) { $items[] = array( 'path' => 'admin/content/node', - 'title' => t('Posts'), + 'title' => t('Content'), 'description' => t("View, edit, and delete your site's content."), 'callback' => 'node_admin_content', 'access' => user_access('administer nodes') @@ -1061,8 +1061,8 @@ function node_menu($may_cache) { 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10); if (module_exists('search')) { - $items[] = array('path' => 'admin/content/search', 'title' => t('Search posts'), - 'description' => t('Search posts by keyword.'), + $items[] = array('path' => 'admin/content/search', 'title' => t('Search content'), + 'description' => t('Search content by keyword.'), 'callback' => 'node_admin_search', 'access' => user_access('administer nodes'), 'type' => MENU_NORMAL_ITEM); |