summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-01-27 22:47:08 +0000
committerDries Buytaert <dries@buytaert.net>2005-01-27 22:47:08 +0000
commite941b2060cf43c057d35d6584de297bd531d85f5 (patch)
tree691f5eaf1b45e8cfbfc41394e6c56f96ae624c98 /modules/taxonomy/taxonomy.module
parentb4d516f423c59c8ee5019f33cd876231d422cacd (diff)
downloadbrdo-e941b2060cf43c057d35d6584de297bd531d85f5.tar.gz
brdo-e941b2060cf43c057d35d6584de297bd531d85f5.tar.bz2
- Consistency: 'deleted' -> 'Deleted'.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r--modules/taxonomy/taxonomy.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index c82465a36..0ac6aa828 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -326,7 +326,7 @@ function taxonomy_del_term($tid) {
db_query('DELETE FROM {term_node} WHERE tid = %d', $tid);
module_invoke_all('taxonomy', 'delete', 'term', $term);
- drupal_set_message(t('deleted term "%name".', array('%name' => $term->name)));
+ drupal_set_message(t('Deleted term "%name".', array('%name' => $term->name)));
}
$tids = $orphans;