diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-14 11:09:09 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-14 11:09:09 +0000 |
commit | eefdce7cce6b6b0949869edf0fef3e7ea8d93bac (patch) | |
tree | c49e1e6d977eebf9f059bbb7133ed0e1a78fe518 /modules/node/node.module | |
parent | 5a26869d0a8358f4450717bf614dd85833a61976 (diff) | |
download | brdo-eefdce7cce6b6b0949869edf0fef3e7ea8d93bac.tar.gz brdo-eefdce7cce6b6b0949869edf0fef3e7ea8d93bac.tar.bz2 |
Change admin content search instructions. They lied about wildcards.
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 faf688d98..8eb6134ba 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -34,7 +34,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. This can include the wildcard character *.<br />For example, a search for "br*" might return "bread bakers", "our daily bread" and "brenda".</p>'); + 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>'); 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': |