From fe5377800f98adb5972ffda653e5791be4d96a7f Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Mon, 8 Aug 2011 14:26:16 -0400 Subject: [PATCH] - Patch #1056416 by bfroehle, Devin Carlson: Strings in hook_requirements() api example not using . --- modules/system/system.api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/system.api.php b/modules/system/system.api.php index acbc8433ca98..caa45c48787d 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'); } -- GitLab