summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-08-20 07:07:17 +0000
committerDries Buytaert <dries@buytaert.net>2006-08-20 07:07:17 +0000
commit92a01e2057e491da6538be32ed2ada0ee64e34f0 (patch)
treefbc1b23bc79a756f4f97fd61826fd842e89ce6bc /modules/help/help.module
parentcbf48c1d9be8dec41e9910fabe6fc18554dfaa86 (diff)
downloadbrdo-92a01e2057e491da6538be32ed2ada0ee64e34f0.tar.gz
brdo-92a01e2057e491da6538be32ed2ada0ee64e34f0.tar.bz2
- Patch #79476 by assimonds and webchick: fixed broken t()-iness.
CVS: ----------------------------------------------------------------------
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index 428808f8c..c4ae90256 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -44,7 +44,7 @@ function help_main() {
$output = t("
<h2>Help topics</h2>
<p>Help is available on the following items:</p>
- %help_pages
+ !help_pages
<h2>Glossary of Drupal terminology</h2>
<dl>
<dt>Block</dt><dd>A small box containing information or content placed in the left-hand or right-hand sidebar of a web page.</dd>
@@ -60,11 +60,11 @@ function help_main() {
<dt>Public</dt><dd>See published.</dd>
<dt>Published</dt><dd>A node that is viewable by everyone. (See unpublished.)</dd>
<dt>Role</dt><dd>A classification users are placed into for the purpose of setting users' permissions.</dd>
- <dt>Taxonomy</dt><dd>A division of a collection of things into ordered, classified groups. (See <a href=\"%taxonomy\">taxonomy help</a>.)</dd>
+ <dt>Taxonomy</dt><dd>A division of a collection of things into ordered, classified groups. (See <a href=\"@taxonomy\">taxonomy help</a>.)</dd>
<dt>Unpublished</dt><dd>A node that is only viewable by administrators and moderators.</dd>
<dt>User</dt><dd>A person who has an account at your Drupal site, and is logged in with that account.</dd>
<dt>Visitor</dt><dd>A person who does not have an account at your Drupal site or a person who has an account at your Drupal site but is <strong>not</strong> logged in with that account. Also termed \"anonymous user\".</dd>
- </dl>", array('%help_pages' => help_links_as_list(), '%taxonomy' => url('admin/help/taxonomy')));
+ </dl>", array('!help_pages' => help_links_as_list(), '@taxonomy' => url('admin/help/taxonomy')));
return $output;
}