From db253b0901450a86a7e6737d55396eae93028686 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 16 Sep 2014 12:07:20 +0100 Subject: [PATCH] Issue #2339021 by catch: Fixed Incorrect call to l() in system_token_info. --- core/modules/system/system.tokens.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/system.tokens.inc b/core/modules/system/system.tokens.inc index e7433aaa799..43cf4a7b18c 100644 --- a/core/modules/system/system.tokens.inc +++ b/core/modules/system/system.tokens.inc @@ -64,7 +64,7 @@ function system_token_info() { ); $date['custom'] = array( 'name' => t("Custom format"), - 'description' => t("A date in a custom format. See !php-date for details.", array('!php-date' => l(t('the PHP documentation'), 'http://php.net/manual/function.date.php'))), + 'description' => t('A date in a custom format. See the PHP documentation for details.'), ); $date['since'] = array( 'name' => t("Time-since"),