Skip to content
Snippets Groups Projects
Commit bfe0ae87 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #84146 by profix, webernet, et al: capitalization fixes.

parent 18a0478e
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -764,7 +764,7 @@ function node_perm() {
function node_search($op = 'search', $keys = NULL) {
switch ($op) {
case 'name':
return t('content');
return t('Content');
case 'reset':
variable_del('node_cron_last');
......@@ -1041,11 +1041,11 @@ function node_menu($may_cache) {
'access' => user_access('administer nodes')
);
$items[] = array('path' => 'admin/content/node/overview', 'title' => t('list'),
$items[] = array('path' => 'admin/content/node/overview', 'title' => t('List'),
'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
if (module_exists('search')) {
$items[] = array('path' => 'admin/content/search', 'title' => t('search posts'),
$items[] = array('path' => 'admin/content/search', 'title' => t('Search posts'),
'description' => t('Search posts by keyword.'),
'callback' => 'node_admin_search',
'access' => user_access('administer nodes'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment