summaryrefslogtreecommitdiff
path: root/modules/php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-09-13 01:11:08 +0000
committerDries Buytaert <dries@buytaert.net>2010-09-13 01:11:08 +0000
commit163808d2f1f5b16999ec427a153188e9a67b596a (patch)
tree297eb2bc8db017c01358c753e5ef510bde40c777 /modules/php
parentf8b63338e48a6b0ef52e024030b0330c0fc8af53 (diff)
downloadbrdo-163808d2f1f5b16999ec427a153188e9a67b596a.tar.gz
brdo-163808d2f1f5b16999ec427a153188e9a67b596a.tar.bz2
- Patch #908772 by sivaji: incorrect use of t() in php_enable().
Diffstat (limited to 'modules/php')
-rw-r--r--modules/php/php.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/php/php.install b/modules/php/php.install
index ca76bee50..15c878403 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))));
}
}