Skip to content
Snippets Groups Projects
Commit d0d3e611 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

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

parent c08e2798
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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')
),
),
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment