diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-09-19 07:53:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-09-19 07:53:59 +0000 |
commit | 8fc581d4d70ad4554a574d6338c96b744195a25a (patch) | |
tree | 76d31cd86d5e52f4f7d7c8ea5e81c4bb03a728cb /modules/system/system.install | |
parent | 88c75b8772ce0d5bdf4bf430bcfc6010dd440ac2 (diff) | |
download | brdo-8fc581d4d70ad4554a574d6338c96b744195a25a.tar.gz brdo-8fc581d4d70ad4554a574d6338c96b744195a25a.tar.bz2 |
- Patch #309488 by kbahey: correct capitalization of TRUE and FALSE.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 84c7f4d8a..0402a7bc6 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -171,7 +171,7 @@ function system_requirements($phase) { } $description .= ' ' . $t('You can <a href="@cron">run cron manually</a>.', array('@cron' => url('admin/reports/status/run-cron'))); - $description .= '<br />' . $t('To run cron from outside the site, go to <a href="!cron">!cron</a>', array('!cron' => url('cron.php', array('absolute' => true, 'query' => 'cron_key=' . variable_get('cron_key', 'drupal'))))); + $description .= '<br />' . $t('To run cron from outside the site, go to <a href="!cron">!cron</a>', array('!cron' => url('cron.php', array('absolute' => TRUE, 'query' => 'cron_key=' . variable_get('cron_key', 'drupal'))))); $requirements['cron'] = array( 'title' => $t('Cron maintenance tasks'), |