- Patch #84146 by profix, webernet, et al: capitalization fixes.
parent
18a0478e37
commit
bfe0ae8733
|
@ -764,7 +764,7 @@ function node_perm() {
|
||||||
function node_search($op = 'search', $keys = NULL) {
|
function node_search($op = 'search', $keys = NULL) {
|
||||||
switch ($op) {
|
switch ($op) {
|
||||||
case 'name':
|
case 'name':
|
||||||
return t('content');
|
return t('Content');
|
||||||
|
|
||||||
case 'reset':
|
case 'reset':
|
||||||
variable_del('node_cron_last');
|
variable_del('node_cron_last');
|
||||||
|
@ -1041,11 +1041,11 @@ function node_menu($may_cache) {
|
||||||
'access' => user_access('administer nodes')
|
'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);
|
'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
|
||||||
|
|
||||||
if (module_exists('search')) {
|
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.'),
|
'description' => t('Search posts by keyword.'),
|
||||||
'callback' => 'node_admin_search',
|
'callback' => 'node_admin_search',
|
||||||
'access' => user_access('administer nodes'),
|
'access' => user_access('administer nodes'),
|
||||||
|
|
Loading…
Reference in New Issue