diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-08-08 14:26:36 -0400 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-08-08 14:26:36 -0400 |
commit | 5869d6892752a62bae46d66f31c353935672c081 (patch) | |
tree | 62496bb97c078316c85575212292ead5dc0fc9ca /modules/system/system.api.php | |
parent | c0840887b1ccf479bc08e52658496693f5c15805 (diff) | |
download | brdo-5869d6892752a62bae46d66f31c353935672c081.tar.gz brdo-5869d6892752a62bae46d66f31c353935672c081.tar.bz2 |
- Patch #1056416 by bfroehle, Devin Carlson: Strings in hook_requirements() api example not using .
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 179f12311..2a23eaed1 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -2859,7 +2859,7 @@ function hook_requirements($phase) { ); } - $requirements['cron']['description'] .= ' ' . t('You can <a href="@cron">run cron manually</a>.', array('@cron' => url('admin/logs/status/run-cron'))); + $requirements['cron']['description'] .= ' ' . $t('You can <a href="@cron">run cron manually</a>.', array('@cron' => url('admin/logs/status/run-cron'))); $requirements['cron']['title'] = $t('Cron maintenance tasks'); } |