From 163808d2f1f5b16999ec427a153188e9a67b596a Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Mon, 13 Sep 2010 01:11:08 +0000 Subject: [PATCH] - Patch #908772 by sivaji: incorrect use of t() in php_enable(). --- modules/php/php.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/php/php.install b/modules/php/php.install index ca76bee505a3..15c8784033c7 100644 --- a/modules/php/php.install +++ b/modules/php/php.install @@ -33,7 +33,7 @@ function php_enable() { $php_format = (object) $php_format; filter_format_save($php_format); - drupal_set_message(t('A !php-code text format has been created.', array('!php-code' => l('PHP code', 'admin/config/content/formats/' . $php_format->format)))); + drupal_set_message(t('A <a href="@php-code">PHP code</a> text format has been created.', array('@php-code' => url('admin/config/content/formats/' . $php_format->format)))); } } -- GitLab