summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-01-15 08:00:24 +0000
committerDries Buytaert <dries@buytaert.net>2008-01-15 08:00:24 +0000
commitd0d3e6110f69e2ee15f41fc3640cfe3278085518 (patch)
tree8c46fa5514c0e9da9075109b12300bfa564d683a /modules/taxonomy/taxonomy.module
parentc08e2798594f2643de5469a9763cc7ad323bf0c8 (diff)
downloadbrdo-d0d3e6110f69e2ee15f41fc3640cfe3278085518.tar.gz
brdo-d0d3e6110f69e2ee15f41fc3640cfe3278085518.tar.bz2
- Patch #206495 by jvandyk: improved consistency of trigger descriptions.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r--modules/taxonomy/taxonomy.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index c1bca9ff1..25d01b711 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -990,7 +990,7 @@ function taxonomy_vocabulary_load($vid) {
$vocabularies[$vid] = $voc;
}
}
-
+
// Return NULL if this vocabulary does not exist.
return !empty($vocabularies[$vid]) ? $vocabularies[$vid] : NULL;
}
@@ -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')
),
),
),