diff options
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 13cf52c33..4c1aeb540 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1149,13 +1149,13 @@ function taxonomy_hook_info() { 'taxonomy' => array( 'taxonomy' => array( 'insert' => array( - 'runs when' => t('When a new category has been created'), + 'runs when' => t('After saving a new category to the database'), ), 'update' => array( - 'runs when' => t('When a category has been updated'), + 'runs when' => t('After saving an updated category to the database'), ), 'delete' => array( - 'runs when' => t('When a category has been deleted') + 'runs when' => t('After deleting a category') ), ), ), |