diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-07-19 18:08:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-07-19 18:08:03 +0000 |
commit | b6cdead1641b081fb1d9bd37ea8f6fd7e6603131 (patch) | |
tree | a8fd49d302710a1359109a4f4991ea2d0e2d914d /modules | |
parent | 5e9ce35738251693c93b6cb5d2b94659c2b04196 (diff) | |
download | brdo-b6cdead1641b081fb1d9bd37ea8f6fd7e6603131.tar.gz brdo-b6cdead1641b081fb1d9bd37ea8f6fd7e6603131.tar.bz2 |
- Removed <strong>s
Diffstat (limited to 'modules')
-rw-r--r-- | modules/taxonomy.module | 2 | ||||
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index f5a438e8a..a3ae3cac8 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -369,7 +369,7 @@ function taxonomy_overview() { $node_type = node_invoke($type, 'node_name'); $types[] = $node_type ? $node_type : $type; } - $rows[] = array('<strong>'. check_plain($vocabulary->name) .'</strong>', implode(', ', $types), l(t('edit vocabulary'), "admin/taxonomy/edit/vocabulary/$vocabulary->vid"), l(t('edit terms'), "admin/taxonomy/$vocabulary->vid")); + $rows[] = array(check_plain($vocabulary->name), implode(', ', $types), l(t('edit vocabulary'), "admin/taxonomy/edit/vocabulary/$vocabulary->vid"), l(t('edit terms'), "admin/taxonomy/$vocabulary->vid")); } if (!$rows) { diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index f5a438e8a..a3ae3cac8 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -369,7 +369,7 @@ function taxonomy_overview() { $node_type = node_invoke($type, 'node_name'); $types[] = $node_type ? $node_type : $type; } - $rows[] = array('<strong>'. check_plain($vocabulary->name) .'</strong>', implode(', ', $types), l(t('edit vocabulary'), "admin/taxonomy/edit/vocabulary/$vocabulary->vid"), l(t('edit terms'), "admin/taxonomy/$vocabulary->vid")); + $rows[] = array(check_plain($vocabulary->name), implode(', ', $types), l(t('edit vocabulary'), "admin/taxonomy/edit/vocabulary/$vocabulary->vid"), l(t('edit terms'), "admin/taxonomy/$vocabulary->vid")); } if (!$rows) { |