diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-01-27 22:47:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-01-27 22:47:08 +0000 |
commit | e941b2060cf43c057d35d6584de297bd531d85f5 (patch) | |
tree | 691f5eaf1b45e8cfbfc41394e6c56f96ae624c98 /modules/taxonomy.module | |
parent | b4d516f423c59c8ee5019f33cd876231d422cacd (diff) | |
download | brdo-e941b2060cf43c057d35d6584de297bd531d85f5.tar.gz brdo-e941b2060cf43c057d35d6584de297bd531d85f5.tar.bz2 |
- Consistency: 'deleted' -> 'Deleted'.
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index c82465a36..0ac6aa828 100644 --- a/modules/taxonomy.module +++ b/modules/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; |