summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-23 04:40:57 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-23 04:40:57 +0000
commit28feea3cc56e75a9d4d169c34d2609e8847cf30b (patch)
tree0c20b532460beb8b62d577036a6c69cfe3a0c73e /modules/system/system.module
parent26be0d8d7f547256504f4ed8dacc1b871a4f304f (diff)
downloadbrdo-28feea3cc56e75a9d4d169c34d2609e8847cf30b.tar.gz
brdo-28feea3cc56e75a9d4d169c34d2609e8847cf30b.tar.bz2
#80079 by drewish, fix some double placeholdering and other bugs with using t().
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 746fdb103..cf1ff5a41 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -798,7 +798,7 @@ function system_cron_status($cron = '') {
else {
$status = t('Cron has not run. It appears cron jobs have not been setup on your system. Please check the help pages for <a href="@url">configuring cron jobs</a>.', array('@url' => 'http://drupal.org/cron'));
}
- $status .= ' '. t('Cron can, if necessary, also be run <a href="%cron">manually</a>.', array('%cron' => url('admin/settings/cron-status/cron')));
+ $status .= ' '. t('Cron can, if necessary, also be run <a href="!cron">manually</a>.', array('!cron' => url('admin/settings/cron-status/cron')));
return $status;
}