- Patch #206495 by jvandyk: improved consistency of trigger descriptions.

6.x
Dries Buytaert 2008-01-15 08:00:24 +00:00
parent c08e279859
commit d0d3e6110f
1 changed files with 4 additions and 4 deletions

View File

@ -1297,13 +1297,13 @@ function taxonomy_hook_info() {
'taxonomy' => array(
'taxonomy' => array(
'insert' => array(
'runs when' => t('After saving a new term to the database.'),
'runs when' => t('After saving a new term to the database'),
),
'update' => array(
'runs when' => t('After saving an updated term to the database.'),
'runs when' => t('After saving an updated term to the database'),
),
'delete' => array(
'runs when' => t('After deleting a term.')
'runs when' => t('After deleting a term')
),
),
),