summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-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')
),
),
),