summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-08 16:23:17 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-08 16:23:17 +0000
commit0a87a8f5776db2cb704676829a542617a2843e32 (patch)
tree14457e9a477ac07d3f6bdeec71045c9a76d5ab7f /modules
parentbfdd7f237306ef276e821e213691309fa4820487 (diff)
downloadbrdo-0a87a8f5776db2cb704676829a542617a2843e32.tar.gz
brdo-0a87a8f5776db2cb704676829a542617a2843e32.tar.bz2
#189936 by mlsamuelson: remove pointless links to taxonomy help page from form labels and descritions for consistency
Diffstat (limited to 'modules')
-rw-r--r--modules/taxonomy/taxonomy.admin.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index cb58d93c7..c75bf55e2 100644
--- a/modules/taxonomy/taxonomy.admin.inc
+++ b/modules/taxonomy/taxonomy.admin.inc
@@ -262,10 +262,10 @@ function taxonomy_form_term(&$form_state, $vocabulary, $edit = array()) {
$exclude[] = $edit['tid'];
if ($vocabulary->hierarchy == 1) {
- $form['parent'] = _taxonomy_term_select(t('Parent'), 'parent', $parent, $vocabulary->vid, l(t('Parent term'), 'admin/help/taxonomy', array('fragment' => 'parent')) .'.', 0, '<'. t('root') .'>', $exclude);
+ $form['parent'] = _taxonomy_term_select(t('Parent'), 'parent', $parent, $vocabulary->vid, t('Parent term') .'.', 0, '<'. t('root') .'>', $exclude);
}
elseif ($vocabulary->hierarchy == 2) {
- $form['parent'] = _taxonomy_term_select(t('Parents'), 'parent', $parent, $vocabulary->vid, l(t('Parent terms'), 'admin/help/taxonomy', array('fragment' => 'parent')) .'.', 1, '<'. t('root') .'>', $exclude);
+ $form['parent'] = _taxonomy_term_select(t('Parents'), 'parent', $parent, $vocabulary->vid, t('Parent terms') .'.', 1, '<'. t('root') .'>', $exclude);
}
}
@@ -277,7 +277,7 @@ function taxonomy_form_term(&$form_state, $vocabulary, $edit = array()) {
'#type' => 'textarea',
'#title' => t('Synonyms'),
'#default_value' => implode("\n", taxonomy_get_synonyms($edit['tid'])),
- '#description' => t('<a href="@help-url">Synonyms</a> of this term, one synonym per line.', array('@help-url' => url('admin/help/taxonomy', array('absolute' => TRUE)))));
+ '#description' => t('Synonyms of this term, one synonym per line.'));
$form['weight'] = array(
'#type' => 'weight',
'#title' => t('Weight'),