summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-01-11 23:33:48 -0500
committerwebchick <webchick@24967.no-reply.drupal.org>2012-01-11 23:33:48 -0500
commit1aad594b51a8a71dc1ad91d4f3312a3a4e91748c (patch)
tree3c2d2ed590f46deaad674ec0a90f0de63d1792c3
parente137a81ad9d2286099607f1880c61c900c245281 (diff)
downloadbrdo-1aad594b51a8a71dc1ad91d4f3312a3a4e91748c.tar.gz
brdo-1aad594b51a8a71dc1ad91d4f3312a3a4e91748c.tar.bz2
Issue #1336308 by kathyh, pjcdawkins, meshkinsoft: Fixed wrong usage of function t in system_menu().
-rw-r--r--modules/system/system.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index eac76a33d..3b9b09ffe 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -976,7 +976,7 @@ function system_menu() {
);
$items['admin/config/system/site-information'] = array(
'title' => 'Site information',
- 'description' => t('Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.'),
+ 'description' => 'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.',
'page callback' => 'drupal_get_form',
'page arguments' => array('system_site_information_settings'),
'access arguments' => array('administer site configuration'),
@@ -984,8 +984,8 @@ function system_menu() {
'weight' => -20,
);
$items['admin/config/system/cron'] = array(
- 'title' => t('Cron'),
- 'description' => t('Manage automatic site maintenance tasks.'),
+ 'title' => 'Cron',
+ 'description' => 'Manage automatic site maintenance tasks.',
'page callback' => 'drupal_get_form',
'page arguments' => array('system_cron_settings'),
'access arguments' => array('administer site configuration'),