diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-26 02:20:01 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-26 02:20:01 +0000 |
commit | b5bf8a8f476fe4214478fec9250e651164b0e76f (patch) | |
tree | 434eb5771bd9238d426be6c19d9c30730af1ab3e /modules/node/node.module | |
parent | fb70944dc92345e3f62c5ff810c805ffdeacd4bb (diff) | |
download | brdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.gz brdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.bz2 |
#97824 by Gurpartap. Move enclosing elements outside of their t().
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index c85a59e2e..f2285391b 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -28,7 +28,7 @@ function node_help($section) { $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@node">Node page</a>.', array('@node' => 'http://drupal.org/handbook/modules/node/')) .'</p>'; return $output; case 'admin/content/search': - return t('<p>Enter a simple pattern to search for a post. Words are matched exactly. Phrases can be surrounded by quotes to do an exact search.</p>'); + return '<p>'. t('Enter a simple pattern to search for a post. Words are matched exactly. Phrases can be surrounded by quotes to do an exact search.') .'</p>'; case 'admin/content/types': return '<p>'. t('Below is a list of all the content types on your site. All posts that exist on your site are instances of one of these content types.') .'</p>'; case 'admin/content/types/add': |