diff options
Diffstat (limited to 'modules/path')
-rw-r--r-- | modules/path/path.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index 1679e8e43..81a5ad28f 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -26,9 +26,9 @@ function path_help($section) { $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@path">Path page</a>.', array('@path' => 'http://drupal.org/handbook/modules/path/')) .'</p>'; return $output; case 'admin/build/path': - return t("<p>Drupal provides users complete control over URLs through aliasing. This feature is typically used to make URLs human-readable or easy to remember. For example, one could map the relative URL 'node/1' onto 'about'. Each system path can have multiple aliases.</p>"); + return '<p>'. t("Drupal provides users complete control over URLs through aliasing. This feature is typically used to make URLs human-readable or easy to remember. For example, one could map the relative URL 'node/1' onto 'about'. Each system path can have multiple aliases.") .'</p>'; case 'admin/build/path/add': - return t('<p>Enter the path you wish to create the alias for, followed by the name of the new alias.</p>'); + return '<p>'. t('Enter the path you wish to create the alias for, followed by the name of the new alias.') .'</p>'; } } |