diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-11 14:50:05 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-11 14:50:05 +0000 |
commit | ac7637bc9bf5c4dae43a448511b67daf2825be1a (patch) | |
tree | 989d00ed976ff651d954a87b10315a99156f9cbd /modules/taxonomy | |
parent | f73786d1e4c658c552f3cc103d83bb7801101c77 (diff) | |
download | brdo-ac7637bc9bf5c4dae43a448511b67daf2825be1a.tar.gz brdo-ac7637bc9bf5c4dae43a448511b67daf2825be1a.tar.bz2 |
#172773 by numerous contributors: Make the actions interface usable by mere mortals (including rename of actions.module to trigger, but keeping the actions themselfs).
Complete previous history of actions module:
- #148410 by jvandyk: added rewrite of the actions module!
- #155986 by Uwe: fixed typos.
- #155828 by Eaton, pwolanin and jvandyk: let actions live even if actions.module is not turned on
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') ), ), ), |