summaryrefslogtreecommitdiff
path: root/modules/system/system.api.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-08-08 14:26:36 -0400
committerDries Buytaert <dries@buytaert.net>2011-08-08 14:26:36 -0400
commit5869d6892752a62bae46d66f31c353935672c081 (patch)
tree62496bb97c078316c85575212292ead5dc0fc9ca /modules/system/system.api.php
parentc0840887b1ccf479bc08e52658496693f5c15805 (diff)
downloadbrdo-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.php2
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');
}