diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-18 12:17:00 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-18 12:17:00 +0000 |
commit | 81938a3cdc7b9bd13d58e355c59d9835e830fea4 (patch) | |
tree | 4d6156a6edb7898d74d5b1836b80d08750aa39c2 /modules/legacy | |
parent | 885a29c4cd13776165c40080a00180cddd420a46 (diff) | |
download | brdo-81938a3cdc7b9bd13d58e355c59d9835e830fea4.tar.gz brdo-81938a3cdc7b9bd13d58e355c59d9835e830fea4.tar.bz2 |
#76802: Introduce placeholder magic into t()
See: http://drupal.org/node/64279#t-placeholders
Diffstat (limited to 'modules/legacy')
-rw-r--r-- | modules/legacy/legacy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/legacy/legacy.module b/modules/legacy/legacy.module index 5dd044359..2105ffb8d 100644 --- a/modules/legacy/legacy.module +++ b/modules/legacy/legacy.module @@ -25,7 +25,7 @@ function legacy_help($section) { </ul> '); $output .= '<p>'. t('Legacy module has no configurable options.') .'</p>'; - $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%legacy">Legacy page</a>.', array('%legacy' => 'http://drupal.org/handbook/modules/legacy/')) .'</p>'; + $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@legacy">Legacy page</a>.', array('@legacy' => 'http://drupal.org/handbook/modules/legacy/')) .'</p>'; return $output; case 'admin/settings/modules#description': return t('Provides legacy handlers for upgrades from older Drupal installations.'); |